diff --git a/docs/ext/extinclude.py b/docs/ext/extinclude.py index b07982652..8264b4636 100644 --- a/docs/ext/extinclude.py +++ b/docs/ext/extinclude.py @@ -2,14 +2,12 @@ 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 +from httpx import get + class HelloDirective(SphinxDirective): """A directive to say hello!""" @@ -17,7 +15,9 @@ class HelloDirective(SphinxDirective): def run(self) -> list[nodes.Node]: - paragraph_node = nodes.paragraph(text=f'hello {self.arguments[0]}!') + content = get("https://forge.cloud.silique.fr/stove/rougail-tutorials/raw/commit/v1.1_001/firefox/00-proxy.yml") + #paragraph_node = nodes.paragraph(text=f'hello {self.arguments[0]}!') + paragraph_node = nodes.paragraph(text=content.text) return [paragraph_node]