Skip to content

Commit

Permalink
Show how to install txt2tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
jendrikseipp committed Jan 11, 2024
1 parent 5661ddd commit 5c8e972
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion misc/autodoc/markup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import logging

import txt2tags
try:
import txt2tags
except ImportError:
raise SystemExit("txt2tags is not installed. Please install it with 'pip install -r requirements.txt', preferably in a virtual environment.")


def _get_config(target):
Expand Down

0 comments on commit 5c8e972

Please sign in to comment.