summaryrefslogtreecommitdiff
path: root/web/css/syntax.css
AgeCommit message (Collapse)AuthorFilesLines
2019-05-31Bump syntax.cssJasper Van der Jeugt1-18/+61
See #675
2014-01-01Fix issue with syntax highlighting + line nums.Adelbert Chang1-13/+13
Below is the generated HTML for with line numbers and without line numbers, respectively. ```html <!-- Without line numbers --> <pre class="sourceCode scala"> <code class="sourceCode scala"> <span class="kw">trait</span> Monad[M[_]] </code> </pre> <!-- With line numbers --> <table class="sourceCode scala numberLines"> <tr class="sourceCode"> <td class="lineNumbers"> <pre>1</pre> </td> <td class="sourceCode"> <pre> <code class="sourceCode scala"> <span class="kw">trait</span> Monad[M[_]] </code> </pre> </td> </tr> </table> ``` The markdown used is: ``` ~~~~ { .scala } trait Monad[M[_]] ~~~~ ~~~~ { .scala .numberLines} trait Monad[M[_]] ~~~~ ``` Notice that without line numbers the outer `pre` has a `sourceCode` class whereas with line numbers the `sourceCode` class is only put in `code` and table-related tags. In the original `syntax.css` file synax highlighting was only triggered if the `kw` and friends tags were within a `pre.sourceCode` - that means it did not trigger with line numbers. This change removes the requirement for the `pre` prefix so that highlighting is triggered with or without line numbers, so long as the code is within *some* `.sourceCode` tag.
2011-12-15Remove whitespace [Gun.io WhitespaceBot]Gun.io Whitespace Robot1-2/+2
2011-06-13Remove examples from this repoJasper Van der Jeugt1-0/+18