mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
61 lines
2.0 KiB
Python
Executable File
61 lines
2.0 KiB
Python
Executable File
#!/usr/bin/python
|
|
# Compile document to HTML use docutils.
|
|
|
|
# ========================================
|
|
# Pygments syntax highlighting
|
|
# ========================================
|
|
from pygments.formatters import HtmlFormatter
|
|
|
|
# Set to True if you want inline CSS styles instead of classes
|
|
INLINESTYLES = True
|
|
|
|
from pygments.formatters import HtmlFormatter
|
|
|
|
# The default formatter
|
|
DEFAULT = HtmlFormatter(noclasses=INLINESTYLES)
|
|
|
|
# Add name -> formatter pairs for every variant you want to use
|
|
VARIANTS = {
|
|
# 'linenos': HtmlFormatter(noclasses=INLINESTYLES, linenos=True),
|
|
}
|
|
|
|
from docutils import nodes
|
|
from docutils.parsers.rst import directives
|
|
|
|
from pygments import highlight
|
|
from pygments.lexers import get_lexer_by_name, TextLexer
|
|
|
|
def pygments_directive(name, arguments, options, content, lineno,
|
|
content_offset, block_text, state, state_machine):
|
|
try:
|
|
lexer = get_lexer_by_name(arguments[0])
|
|
except ValueError:
|
|
# no lexer found - use the text one instead of an exception
|
|
lexer = TextLexer()
|
|
# take an arbitrary option if more than one is given
|
|
formatter = options and VARIANTS[options.keys()[0]] or DEFAULT
|
|
parsed = highlight(u'\n'.join(content), lexer, formatter)
|
|
return [nodes.raw('', parsed, format='html')]
|
|
|
|
pygments_directive.arguments = (1, 0, 1)
|
|
pygments_directive.content = 1
|
|
pygments_directive.options = dict([(key, directives.flag) for key in VARIANTS])
|
|
|
|
directives.register_directive('sourcecode', pygments_directive)
|
|
|
|
|
|
# ========================================
|
|
# Command line processing
|
|
# ========================================
|
|
from docutils.core import publish_cmdline, default_description
|
|
|
|
description = ('Generates (X)HTML documents from standalone reStructuredText '
|
|
'sources. ' + default_description)
|
|
overrides = {'stylesheet_path' : 'styles.css',
|
|
'embed_stylesheet' : False,
|
|
'template' : 'doc/template.txt'}
|
|
|
|
publish_cmdline(writer_name='html',
|
|
description=description,
|
|
settings_overrides=overrides)
|