mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
6b5e117a12
Closes #12897 Change-Id: Ib27a4a7b540d45243e6252db769d4b9fb7447718 Signed-off-by: Rohan Hasabe <rohanhasabe8@gmail.com>
19 lines
670 B
Text
19 lines
670 B
Text
# Test the gen commands.
|
|
# Note that adding new commands will require updating the NUM_COMMANDS value.
|
|
env NUM_COMMANDS=44
|
|
|
|
hugo gen -h
|
|
stdout 'Generate documentation for your project using Hugo''s documentation engine, including syntax highlighting for various programming languages\.'
|
|
|
|
hugo gen doc --dir clidocs
|
|
checkfilecount $NUM_COMMANDS clidocs
|
|
|
|
hugo gen man -h
|
|
stdout 'up-to-date man pages'
|
|
hugo gen man --dir manpages
|
|
checkfilecount $NUM_COMMANDS manpages
|
|
|
|
hugo gen chromastyles -h
|
|
stdout 'Generate CSS stylesheet for the Chroma code highlighter'
|
|
hugo gen chromastyles --style monokai
|
|
stdout '/\* LineHighlight \*/ \.chroma \.hl \{ background-color:#3c3d38 \}'
|