aboutsummaryrefslogtreecommitdiffstats
path: root/library/markdown.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/markdown.php')
-rw-r--r--library/markdown.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/markdown.php b/library/markdown.php
index f548fc26c..0e3275ff2 100644
--- a/library/markdown.php
+++ b/library/markdown.php
@@ -1136,7 +1136,7 @@ class Markdown_Parser {
# Create a code span markup for $code. Called from handleSpanToken.
#
$code = htmlspecialchars(trim($code), ENT_NOQUOTES);
- return $this->hashPart("<code>$code</code>");
+ return $this->hashPart("<code class=\"inline-code\">$code</code>");
}