Hacked Parsedown and Markdown to add class inline-code to <code> blocks for proper inline code rendering. Stopped using Parsedown even though Markdown is slower, hence extra delay when previewing pages.

This commit is contained in:
Andrew Manning
2016-05-29 17:06:45 -04:00
parent 75b169f391
commit 3e6af5c876
5 changed files with 28 additions and 6 deletions

View File

@@ -120,6 +120,15 @@ code {
color: #000;
}
.inline-code {
font-size: 1em;
padding: 0;
border: 0;
background: #FFF;
display: inline;
color: #000;
}
pre {
background: #F5F5F5;
color: #333;