fix svg path
This commit is contained in:
parent
c067d5fa43
commit
862c030c85
3 changed files with 5 additions and 4 deletions
|
@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "sphinxcontrib-d2lang"
|
name = "sphinxcontrib-d2lang"
|
||||||
version = "0.0.3"
|
version = "0.0.4"
|
||||||
authors = [
|
authors = [
|
||||||
{ name="Milka64", email="michael.ricart@0w.tf" },
|
{ name="Milka64", email="michael.ricart@0w.tf" },
|
||||||
]
|
]
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -14,7 +14,7 @@ with open('README.md', 'r', encoding='utf8') as file:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='sphinxcontrib-d2lang',
|
name='sphinxcontrib-d2lang',
|
||||||
version='0.0.3',
|
version='0.0.4',
|
||||||
author='Milka64',
|
author='Milka64',
|
||||||
author_email='michael.ricart@0w.tf',
|
author_email='michael.ricart@0w.tf',
|
||||||
url='https://git.0w.tf/Milka64/sphinx-d2lang/',
|
url='https://git.0w.tf/Milka64/sphinx-d2lang/',
|
||||||
|
|
|
@ -22,10 +22,11 @@ class D2langDirective(SphinxDirective):
|
||||||
d2_bin = which('d2')
|
d2_bin = which('d2')
|
||||||
srcdir = self.state.document.settings.env.srcdir
|
srcdir = self.state.document.settings.env.srcdir
|
||||||
diag_source = self.content
|
diag_source = self.content
|
||||||
|
out_dir = self.state.document.current_source.rsplit("/",1)[0]
|
||||||
if 'filename' in self.options:
|
if 'filename' in self.options:
|
||||||
output_fname = self.options.get('filename')
|
output_fname = out_dir + "/" + self.options.get('filename')
|
||||||
else:
|
else:
|
||||||
output_fname = "d2lang_svg/" + str(uuid.uuid4()) + ".svg"
|
output_fname = out_dir + "/" + "d2lang_svg/" + str(uuid.uuid4()) + ".svg"
|
||||||
if 'layout' in self.options:
|
if 'layout' in self.options:
|
||||||
layout = self.options.get('layout')
|
layout = self.options.get('layout')
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue