aboutsummaryrefslogtreecommitdiff
path: root/source
AgeCommit message (Collapse)Author
2021-09-27Add bottom margin to side-by-side stylingHEADmasterAdrian Kummerlaender
2021-09-26Add basic styling for side-by-side picturesAdrian Kummerlaender
2021-09-23Include Org files in tag pagesAdrian Kummerlaender
2021-09-22Add basic support for Org articlesAdrian Kummerlaender
2021-08-03Replace favicon by SVGAdrian Kummerlaender
2018-12-23Increase video marginAdrian Kummerlaender
2018-12-20Add video tag stylingAdrian Kummerlaender
2018-11-18Fix footnote links on start pageAdrian Kummerlaender
2018-11-18Clean up CSSAdrian Kummerlaender
2018-11-17Fix some CSS bugsAdrian Kummerlaender
2018-11-13Move favicon to result rootAdrian Kummerlaender
2018-11-13Pull in some nice fontsAdrian Kummerlaender
i.e. Oswald for titles and Vollkorn for text. Including some markup changes to accomodate them. New approach to aligning article-info to title should work independently of the selected font.
2018-10-18Fix super- and subscript line heightAdrian Kummerlaender
2018-09-28Remove article streamAdrian Kummerlaender
2018-09-28Make archive subnavigation customizableAdrian Kummerlaender
2018-09-26Load navigation, meta-tags from content `meta.xml`Adrian Kummerlaender
2018-09-26Add blog_content submoduleAdrian Kummerlaender
2018-09-26Remove contents to be included as a submoduleAdrian Kummerlaender
2018-09-24Update code.kummerlaender.eu linksAdrian Kummerlaender
2018-06-24Fix typoAdrian Kummerlaender
2018-06-24Add article on NixOS, GPU programming and assorted topicsAdrian Kummerlaender
2018-06-05Fix generate, preview scriptsAdrian Kummerlaender
2017-10-04Fix footnote links, backlinks for all article outputsAdrian Kummerlaender
See also ea80a43
2017-10-03Add article on BB10 development in 2017Adrian Kummerlaender
2017-05-24Add Edge link font workaroundAdrian Kummerlaender
The _more_ link symbol is displayed with an ugly blue background in recent versions of Microsoft Edge (see MS issue 11635143).
2017-02-12Remove unnecessary `prettylist` styleAdrian Kummerlaender
2017-02-12Remove page, category functionality as it is now provided by ↵Adrian Kummerlaender
`tree.kummerlaender.eu`
2017-02-09Update contact pageAdrian Kummerlaender
2017-02-09Remove comment functionalityAdrian Kummerlaender
Not worth the effort considering it is not used at all.
2017-01-20Add article on tinkering with meta toolsAdrian Kummerlaender
2017-01-17Update markdown syntax to use pandoc's peculiaritiesAdrian Kummerlaender
2016-12-20Switch server side math renderer to _KaTeX_Adrian Kummerlaender
_KaTeX_ offers explicit support for server-side rendering instead of the hacky solution using _Mathjax_. Furtermore it ist noticeably faster and produces better output in my test cases.
2016-10-17Translate math reference sheet page into GermanAdrian Kummerlaender
2016-09-12Link LA12 reference sheet PDF from appropriate project pageAdrian Kummerlaender
2016-09-10Link actual source directory in archiveAdrian Kummerlaender
2016-09-01Add _math reference sheet_ project pageAdrian Kummerlaender
2016-08-31Add _Overview_ like digest start page, remove stream from center stageAdrian Kummerlaender
* stream view is still available from the archive to preserve backwards compatability * reduce layout / styling differences between kummerlaender.eu and this blog
2016-08-31Typo fixAdrian Kummerlaender
2016-07-22++age on about pageAdrian Kummerlaender
2016-07-08Add explicit font definition for code elementsAdrian Kummerlaender
2016-07-08Update about pageAdrian Kummerlaender
2016-05-30Link footnotes in article stream to appropriate single article pageAdrian Kummerlaender
Previously multiple footnotes on article stream pages caused conflicts between articles and as such only worked correctly for the first article on each stream page.
2016-05-22Add article on the visualization of metrics in Voronoi diagramsAdrian Kummerlaender
2016-05-21Forward math expression type (block/inline) to formatterAdrian Kummerlaender
Add support for header elements with inline math expressions
2016-05-15Implement support for inline math expressionsAdrian Kummerlaender
2016-05-10Fix disconcerting usages of `it's` instead of `its`Adrian Kummerlaender
2016-05-05Change _MathJax_ font urls to ressource serverAdrian Kummerlaender
2016-05-04Implement support of server side math expression renderingAdrian Kummerlaender
Many websites employ the [MathJax](https://www.mathjax.org/) library for dynamically rendering LaTeX math expressions on the client side. I expect to require support for doing just that in the future. But as with syntax highlighting I am of the opinion that this kind of stuff should be performed once during site compilation instead of wasting ressources by forcing each client to do this job for every single page request. Luckily there is a [MathJax-node](https://github.com/mathjax/MathJax-node) module that allows using the _MathJax_ library on the server side. This commit adds support for rendering math expressions written in Markdown respectively LaTeX as follows: `$$1 + 1 \neq 0$$` on the server side. This required the introduction of a new `math_highlighter` helper template in `formatter.xsl` based on the `tex2html` utility provided by _MathJax-node_. This formatter is matched against the (Markdown parser generated) `script` node in `formatter.xsl`'s _embellish_ mode. The HTML rendering of the expression is then embedded in a `p class="math"` node. This explicit labeling allows `master.xsl` to include the `math.css` rules only for pages that actually contain math expressions. Note that the XHTML rendering utility stylesheet `xhtml.xsl` currently adds a XML comment to each `span` node. This is a workaround to prevent _Xalan_ from collapsing "empty" `span` tag pairs into single nodes which otherwise leads to rendering errors as it is not valid HTML and is interpreted as a wrong tree structure by the browser. Note that the CSS rules declared in `math.css` are explicitly not part of the MIT licensed part of this repository but where generated by _MathJax_. As there is currently no _productive_ content making use of math expressions a demo page is available under `page/math_test/`.
2016-04-29Add `justify` project pageAdrian Kummerlaender
2016-04-29Update dotfile project pageAdrian Kummerlaender