You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
643 B
643 B
categories | date | description | tags | title | |||
---|---|---|---|---|---|---|---|
|
2023-01-06 | Demonstration of the code shortcode. |
|
Code Shortcode |
Code:
{{</* paige/code */>}}
c = 'c = %r; print(c %% c)'; print(c % c)
{{</* /paige/code */>}}
Result:
{{< paige/code >}} c = 'c = %r; print(c %% c)'; print(c % c) {{< /paige/code >}}
{{</* paige/code lang="python" caption="Python quine" */>}}
c = 'c = %r; print(c %% c)'; print(c % c)
{{</* /paige/code */>}}
Result:
{{< paige/code lang="python" caption="Python quine" >}} c = 'c = %r; print(c %% c)'; print(c % c) {{< /paige/code >}}