mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 08:43:25 +08:00
21 lines
287 B
HTML
Executable File
21 lines
287 B
HTML
Executable File
<!--
|
|
Changed for Discourse:
|
|
|
|
- Our HTML sanitizer escapes quotes " as "
|
|
-->
|
|
<blockquote>
|
|
<p>Example:</p>
|
|
|
|
<pre><code>sub status {
|
|
print "working";
|
|
}
|
|
</code></pre>
|
|
|
|
<p>Or:</p>
|
|
|
|
<pre><code>sub status {
|
|
return "working";
|
|
}
|
|
</code></pre>
|
|
</blockquote>
|