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

categories date description tags title
paige
2023-01-02 Demonstration of the code shortcode.
figures
shortcodes
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 >}}