考虑以下情况。
.. code-block:: my_lang
...
如果我想把my_lang做成Python之类的东西, 我怎么做?
首先,你需要创建一个脚本(_ext/mylanglexer.py
),然后再加上 extensions
在conf.py上
(_ext 是一个惯例,但不是必须的。)
_extmylanglexer.py
# _ext/mylanglexer.py
from pygments.lexers import get_lexer_by_name # refer LEXERS
from pygments.lexers._mapping import LEXERS
from pygments.lexers.python import PythonLexer
def setup(app):
# choose one, both ok
app.add_lexer('my_lang', get_lexer_by_name('py'))
# app.add_lexer('my_lang', PythonLexer)
在某些情况下
# conf.py
extensions = [
...
'_ext.mylanglexer', # types.ModuleType, they are likely the_module = __import__('sphinx.ext.autodoc')
]
在某些 教程 告诉你最好加上 sys.path.append(os.path.abspath("./_ext"))
然后 extensions = ['mylanglexer']
总之,只要你知道那是一个模块,所有的扩展应该都可以是 import ...
所以,如果你的模块不在默认路径中,当然,你必须追加。
现在,它的工作!
看到 pygements.lexers.__init__.py
# pygements.lexers.__init__.py
def get_lexer_by_name(_alias, **options):
...
# lookup builtin lexers
for module_name, name, aliases, _, _ in LEXERS.values(): # <-- Be focus on this line.
if _alias.lower() in aliases:
return _lexer_cache[name](**options) # The class object (module_name+key_name), for example: pygments.lexers.python.PythonLexer(**options)
# continue with lexers from setuptools entrypoints
for cls in find_plugin_lexers():
...
return cls(**options)
raise ClassNotFound('no lexer for alias %r found' % _alias)
其中LEXERS是某种以下的东西。
# pygments.lexers._mapping.py
LEXERS = {
# key_name: module_name, name, aliases: Tuple[str], _, _
...
'ObjectiveCLexer': ('pygments.lexers.objective', 'Objective-C', ('objective-c', 'objectivec', 'obj-c', 'objc'), ('*.m', '*.h'), ('text/x-objective-c',)),
'ObjectiveCppLexer': ('pygments.lexers.objective', 'Objective-C++', ('objective-c++', 'objectivec++', 'obj-c++', 'objc++'), ('*.mm', '*.hh'), ('text/x-objective-c++',)),
'ObjectiveJLexer': ('pygments.lexers.javascript', 'Objective-J', ('objective-j', 'objectivej', 'obj-j', 'objj'), ('*.j',), ('text/x-objective-j',)),
'OcamlLexer': ('pygments.lexers.ml', 'OCaml', ('ocaml',), ('*.ml', '*.mli', '*.mll', '*.mly'), ('text/x-ocaml',)),
'OctaveLexer': ('pygments.lexers.matlab', 'Octave', ('octave',), ('*.m',), ('text/octave',)),
'JsonLexer': ('pygments.lexers.data', 'JSON', ('json',), ('*.json', 'Pipfile.lock'), ('application/json',)),
'PythonLexer': ('pygments.lexers.python', 'Python', ('python', 'py', 'sage', 'python3', 'py3'), ('*.py', '*.pyw', '*.jy', '*.sage', '*.sc', 'SConstruct', 'SConscript', '*.bzl', 'BUCK', 'BUILD', 'BUILD.bazel', 'WORKSPACE', '*.tac'), ('text/x-python', 'application/x-python', 'text/x-python3', 'application/x-python3')),
...
}
在那里,你知道,你的 _alias
在 aliases
,那么将工作!
如何定制我的风格?
你可以复制并对Lexer做一些修改,如 ObjectiveCLexer
, JsonLexer
...
终于 app.add_lexer('my_lang', YourLexer)
这是一种问题。