pydocmaker 2.2.2__tar.gz → 2.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pydocmaker-2.2.2/src/pydocmaker.egg-info → pydocmaker-2.2.3}/PKG-INFO +1 -1
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/__init__.py +1 -1
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/templating.py +2 -1
- {pydocmaker-2.2.2 → pydocmaker-2.2.3/src/pydocmaker.egg-info}/PKG-INFO +1 -1
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/LICENSE +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/README.md +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/setup.cfg +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/setup.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/backend/__init__.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/backend/baseformatter.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/backend/ex_docx.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/backend/ex_html.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/backend/ex_ipynb.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/backend/ex_markdown.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/backend/ex_redmine.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/backend/ex_tex.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/backend/mdx_latex.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/backend/pandoc_api.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/backend/pdf_maker.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/core.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker/util.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker.egg-info/SOURCES.txt +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker.egg-info/dependency_links.txt +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker.egg-info/requires.txt +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/src/pydocmaker.egg-info/top_level.txt +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/tests/test_backend_pandoc.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/tests/test_convert_all.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/tests/test_core.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/tests/test_ex_html.py +0 -0
- {pydocmaker-2.2.2 → pydocmaker-2.2.3}/tests/test_util.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pydocmaker
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.3
|
|
4
4
|
Summary: a minimal document maker to make docx, markdown, html, textile, redmine, and tex documents from python. Written in pure python.
|
|
5
5
|
Home-page: https://github.com/TobiasGlaubach/pydocmaker
|
|
6
6
|
Author: Tobias Glaubach
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = '2.2.
|
|
1
|
+
__version__ = '2.2.3'
|
|
2
2
|
|
|
3
3
|
from pydocmaker.core import DocBuilder, construct, constr, buildingblocks, print_to_pdf, get_latex_compiler, set_latex_compiler, make_pdf_from_tex, show_pdf
|
|
4
4
|
from pydocmaker.util import upload_report_to_redmine, bcolors, txtcolor, colors_dc
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import os
|
|
3
3
|
import json
|
|
4
|
+
from typing import List
|
|
4
5
|
|
|
5
6
|
from jinja2 import Environment, FileSystemLoader, ChoiceLoader
|
|
6
7
|
|
|
@@ -118,7 +119,7 @@ class TemplateDirSource():
|
|
|
118
119
|
"""
|
|
119
120
|
|
|
120
121
|
|
|
121
|
-
def __init__(self, template_dirs:
|
|
122
|
+
def __init__(self, template_dirs:List[str]=None) -> None:
|
|
122
123
|
|
|
123
124
|
if template_dirs is None:
|
|
124
125
|
template_dirs = get_registered_template_dirs(include_default=True)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pydocmaker
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.3
|
|
4
4
|
Summary: a minimal document maker to make docx, markdown, html, textile, redmine, and tex documents from python. Written in pure python.
|
|
5
5
|
Home-page: https://github.com/TobiasGlaubach/pydocmaker
|
|
6
6
|
Author: Tobias Glaubach
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|