The difference between bolded text and links/ anchors was almost none which lead to confusion and having to hover to see which words are links and which ones are bold.
This commit implements best practices for accessibility by having links in posts( and only in posts) be underlined.
* Added disqus support
* reformatted README
* Updated example config
* Added a make demo command to easy run the exampleSite.
Also good for developing new features but don`t want to setup a
different project for it
* Updated readme
* Working on my .md skillsw
* MathJax support
There was no support for displaying math written in Latex. This is now added with the help of MathJax.
MathJax uses an external Javascript file and as not to add unnecessary load the support for math is only enabled if the 'math' param is set to true.
* MathJax support
There was no support for displaying math written in Latex. This is now added with the help of MathJax.
MathJax uses an external Javascript file and as not to add unnecessary load the support for math is only enabled if the 'math' param is set to true.
* Auto stash before merge of "math" and "origin/math"
* Delete unnecessary option
* Actually enable math for demo page
* Have demo page be consistent
* Update style.less
In chrome and safari the main-page content is not shown in the center of the page.
Adding a
display:flex
to the body-styles in the css-file fixes this problem.
* Update style.less
Building the site fails if the menu is not defined in the config,
because the `header.html` references `.Site.Menus.main`. It can be made
optional by using the `with` helper.