No description
Find a file
2013-10-15 19:15:23 -04:00
test_md Initial Release (v0.1.0) 2013-10-15 19:15:23 -04:00
.gitignore Initial Release (v0.1.0) 2013-10-15 19:15:23 -04:00
_normalize.scss Initial Release (v0.1.0) 2013-10-15 19:15:23 -04:00
LICENSE Initial Release (v0.1.0) 2013-10-15 19:15:23 -04:00
Makefile Initial Release (v0.1.0) 2013-10-15 19:15:23 -04:00
normalize.license.md Initial Release (v0.1.0) 2013-10-15 19:15:23 -04:00
README.md Initial Release (v0.1.0) 2013-10-15 19:15:23 -04:00
styling.sass Initial Release (v0.1.0) 2013-10-15 19:15:23 -04:00

Pan Am: Simple CSS for Pandoc

Pandoc outputs HTML without any styling. That's boring and ugly. This is some simple CSS for stand-alone Pandoc documents that serves as a good default. Regardless of how your compose your document, we'll make it look good.

This should work with markdown, reStructuredText, textile, LaTeX, MediaWiki markup, or any other format Pandoc supports. It should even work for your semantically structured HTML5 documents, if they're written well enough.

Simple to Use

curl -O http://b.enjam.info/panam/styling.css
pandoc --css=styling.css --to=html5 input.md -o output.html

Easy to Develop

gem install sass
make

Trivial to Test

python -m SimpleHTTPServer &
firefox http://localhost:8000 &
chromium http://localhost:8000 &
...

Modern Standards

We focus on modern web standards, and target Pandoc's html5 output target.

Typography

We use Adobe's free Source Sans Pro and Source Code Pro for all our text. It's a simple and easy to read modern sans-serif font that's good for print and web. Webfonts are loaded through Google's Webfonts service, so you don't have to worry about hosting a dozen woff, otf, svg, and eot variants.

In case the user's browser doesn't support CSS3's @font-face directive, we fall back to sane defaults.

To improve readability, wide responsive margins are used with justified text.

Sectioning

Clean horizontal rules are used to section off top-level headers. Styling is provided for h1, h2, and h3 tags, as well as Pandoc's title extension for markdown.

CSS' sibling selectors are used to collapse duplicate horizontal rules to ensure clean transitions between trouble elements, such as h1 and table.

Readable Tables

Pandoc's markdown supports multiple syntaxes for tables. Vertical lines destroy table readability. Our tables use only horizontal rules and alternating shading between even and odd rows, improving comprehension.

Test Cases

There's all sorts of possible edge-cases, so we have a collection of example documents that we automatically build and then review by hand before each release. Upgrading shouldn't break semantic documents.