Sha256: ae2f91b82a35b0adae263956b4f8b4e83eba08d409a4273afbcc72918061c9ea
Contents?: true
Size: 834 Bytes
Versions: 22
Compression:
Stored size: 834 Bytes
Contents
# make sure you already ran pip install -r requirements.txt # # syntax # pygmentize -S <style> -f <formatter> [-a <arg>] [-O <options>] [-P <option=value>] # (pygmentize documentation is pretty scattered and confusing, but the "-a" will add other classes # to the output) STYLES = autumn STYLES += borland STYLES += bw STYLES += colorful STYLES += default STYLES += emacs STYLES += friendly STYLES += fruity STYLES += manni STYLES += monokai STYLES += murphy STYLES += native STYLES += pastie STYLES += perldoc STYLES += tango STYLES += trac STYLES += vim STYLES += vs # a recursively-expanding variable, so that its value contains an actual function call to be # re-expanded under the control of foreach gen_html = pygmentize -S $(style) -f html -a .highlight > $(style).css; cssfiles: @$(foreach style, $(STYLES), $(gen_html))
Version data entries
22 entries across 22 versions & 1 rubygems