Source code for cfxdb.gen.meta.DocFormat

# automatically generated by the FlatBuffers compiler, do not modify

# namespace: meta

# Documentation (text) formats.
[docs] class DocFormat(object): # Unset documentation format.
[docs] NONE = 0
# Plain text documentation format (default).
[docs] TEXT = 1
# Markdown text documentation format.
[docs] MARKDOWN = 2
# Restructered Text (ReST) text documentation format.
[docs] REST = 3
# Generic HTML.
[docs] HTML = 4
# Generic XML.
[docs] XML = 5
# DocBook XML
[docs] DOCBOOK = 6
# Jupyter notebook.
[docs] NOTEBOOK = 7