diff options
author | Ben Petty <benjamin.s.petty@gmail.com> | 2016-12-23 14:37:34 -0800 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2016-12-23 17:37:34 -0500 |
commit | 88a97b9fc0a6dfa5c872d135c613496bb71e5cc4 (patch) | |
tree | 74ad1adb89848a9cfc0b7ae246bc10fb9f2b7677 | |
parent | 25215821f7f2963a8a48a2da0330651d67f52139 (diff) | |
download | markdown-88a97b9fc0a6dfa5c872d135c613496bb71e5cc4.tar.gz markdown-88a97b9fc0a6dfa5c872d135c613496bb71e5cc4.tar.bz2 markdown-88a97b9fc0a6dfa5c872d135c613496bb71e5cc4.zip |
command line (#517)
add . before `codehilite` to generate a proper css output (to reference the codehilite class)
-rw-r--r-- | docs/extensions/code_hilite.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/extensions/code_hilite.txt b/docs/extensions/code_hilite.txt index c44d9a5..52c101e 100644 --- a/docs/extensions/code_hilite.txt +++ b/docs/extensions/code_hilite.txt @@ -36,7 +36,7 @@ The CSS rules either need to be defined in or linked from the header of your HTML templates. Pygments can generate CSS rules for you. Just run the following command from the command line: - pygmentize -S default -f html -a codehilite > styles.css + pygmentize -S default -f html -a .codehilite > styles.css If you are using a different `css_class` (default: `codehilite`), then set the value of the `-a` option to that class name. The CSS rules will be |