rougail/docs/ext/extinclude.py

66 lines
1.9 KiB
Python
Raw Normal View History

2024-10-14 19:17:44 +02:00
from __future__ import annotations
from docutils import nodes
from sphinx.application import Sphinx
from sphinx.util.docutils import SphinxDirective, SphinxRole
from sphinx.util.typing import ExtensionMetadata
2024-10-14 22:51:05 +02:00
from sphinx.directives.code import LiteralInclude, container_wrapper
2024-10-14 19:17:44 +02:00
2024-10-14 19:28:12 +02:00
from httpx import get
2024-10-14 22:51:05 +02:00
class ExtInclude(LiteralInclude):
"""A directive to include code that comes from an url
2024-10-14 19:17:44 +02:00
2024-10-14 22:51:05 +02:00
Sample use::
2024-10-14 19:17:44 +02:00
2024-10-14 22:51:05 +02:00
.. extinclude:: https://forge.cloud.silique.fr/stove/rougail-tutorials/raw/tag/v1.1_010/firefox/00-proxy.yml
:linenos:
:language: yaml
:caption: this is a interesting code
- parameter required
- linenos, language and caption are optionnal.
:default language: yaml
:default caption: extinclude parameter (url)
"""
2024-10-14 19:17:44 +02:00
def run(self) -> list[nodes.Node]:
2024-10-14 22:51:05 +02:00
url = self.arguments[0]
content = get(url)
2024-10-14 19:28:12 +02:00
#paragraph_node = nodes.paragraph(text=f'hello {self.arguments[0]}!')
2024-10-14 22:51:05 +02:00
code = content.text
literal = nodes.literal_block(code, code)
if 'language' in self.options:
literal['language'] = self.options['language']
else:
literal['language'] = 'yaml'
literal['linenos'] = 'linenos' in self.options
if 'caption' in self.options:
caption = self.options.get('caption')
else:
caption = url
literal['caption'] = caption
# FIXME handle the `name` option too
literal = container_wrapper(self, literal, caption)
self.add_name(literal)
return [literal]
#paragraph_node = nodes.paragraph(text=content.text)
#return [paragraph_node]
2024-10-14 19:17:44 +02:00
def setup(app: Sphinx) -> ExtensionMetadata:
2024-10-14 22:51:05 +02:00
app.add_directive('extinclude', ExtInclude)
2024-10-14 19:17:44 +02:00
return {
'version': '0.1',
'parallel_read_safe': True,
'parallel_write_safe': True,
}