-
Notifications
You must be signed in to change notification settings - Fork 4
Description
Some of the websites currently has a not-so-delicious mix of markdown and html tags, mostly the pages where we make active use of Bootstrap classes. It would be nice to make the source files more readable by substituting html for simpler marking serving the same purpose.
Markdown itself, for ideological reasons, do not provide much in terms of formatting utilities, it's mostly a format with an emphasis on structure.
Two possible solutions would be to use Kramdown, which seems to extend markdown with a superset that includes the ability to define HTML classes for CSS styling:
http://kramdown.gettalong.org/quickref.html
or switching from markdown to textile. In the latter case we'll have to move some pages to *.textile instead of *.md. It might be that kramdown is already being used by Jekyll, but that we do not make full use of it yet.