Skip to content

Commit

Permalink
remove test error
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Lichtman committed Jun 20, 2024
1 parent f49ce0b commit eb453f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,6 @@ def gen_fields(doc, d):

# Generate HTML from tex with Pandoc
css_url = "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
pandoc_out = subprocess.run(f"pandoc sigmf-spec.tex asd -f latex -t html -s -o sigmf-spec.html --toc --toc-depth=3 -c {css_url} -c main.css".split(), capture_output = True, text = True)
pandoc_out = subprocess.run(f"pandoc sigmf-spec.tex -f latex -t html -s -o sigmf-spec.html --toc --toc-depth=3 -c {css_url} -c main.css".split(), capture_output = True, text = True)
if len(pandoc_out.stderr):
raise Exception("Pandoc error: " + pandoc_out.stderr)

0 comments on commit eb453f0

Please sign in to comment.