Code Example
How to use blockquote shortcode on article markdown
Code
<pre>
<code>
This is code
</code>
</pre>
and 11ty code blocks also work
JS #
function myFunction() {
return true;
}
Python #
print("This line will be printed.")
Code
<pre>
<code>
This is code
</code>
</pre>
and 11ty code blocks also work
function myFunction() {
return true;
}
print("This line will be printed.")