Skip to content

Commit

Permalink
Improve ordering of JinjaMarkdownStep kw args (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
pydsigner committed Dec 30, 2023
1 parent 113cfd5 commit ec05124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/anchovy/jinja.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ def __init__(self,
jinja_env: Environment | None = None,
jinja_globals: dict[str, t.Any] | None = None,
*,
frontmatter_parser: FrontMatterParser | FrontMatterParserName = 'yaml',
container_types: list[tuple[str | None, list[str]]] | None = None,
container_renderers: dict[str, MDContainerRenderer] | None = None,
substitutions: dict[str, str] | None = None,
auto_anchors: bool = False,
auto_typography: bool = True,
frontmatter_parser: FrontMatterParser | FrontMatterParserName = 'yaml',
code_highlighting: bool = True,
pygments_params: dict[str, t.Any] | None = None,
wordcount: bool = False):
Expand Down

0 comments on commit ec05124

Please sign in to comment.