diff options
author | Robert Göhler <github@ghlr.de> | 2019-11-23 14:00:52 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-11-23 14:00:52 +0100 |
commit | f4c414ce4d899839adf28a8fba67c5ad7587e5ac (patch) | |
tree | 6c778066422f31c80d005f80ef49767049c843d0 /docs/conf.py | |
parent | a0a07c6ab314311909ee3c808d13a712cfba2fb2 (diff) | |
download | vyos-documentation-f4c414ce4d899839adf28a8fba67c5ad7587e5ac.tar.gz vyos-documentation-f4c414ce4d899839adf28a8fba67c5ad7587e5ac.zip |
add new directives "cfcmd" and "opcmd"
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py index 3fedc05c..1591b9bb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -167,3 +167,7 @@ texinfo_documents = [ author, 'VyOS', 'One line description of project.', 'Miscellaneous'), ] + +def setup(app): + app.add_object_type('opcmd', 'opcmd') + app.add_object_type('cfcmd', 'cfcmd') |