forked from github.com/blag
add strikethru and footnotes functionality
This commit is contained in:
@@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
|
||||||
|
## [2.4.0] -- 2024-09-05
|
||||||
|
|
||||||
|
* added strikethru and footnotes to blag renders.
|
||||||
|
|
||||||
## [unreleased] --
|
## [unreleased] --
|
||||||
|
|
||||||
* Added changelog to docs
|
* Added changelog to docs
|
||||||
|
|||||||
@@ -30,6 +30,8 @@ def markdown_factory() -> Markdown:
|
|||||||
"""
|
"""
|
||||||
md = Markdown(
|
md = Markdown(
|
||||||
extensions=[
|
extensions=[
|
||||||
|
"footnotes", # Add footnotes support
|
||||||
|
"pymdownx.tilde", # Add strukethrough support
|
||||||
"meta",
|
"meta",
|
||||||
"fenced_code",
|
"fenced_code",
|
||||||
"codehilite",
|
"codehilite",
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
"""Version information for the blag package."""
|
"""Version information for the blag package."""
|
||||||
|
|
||||||
__VERSION__ = "2.3.1"
|
__VERSION__ = "2.4.0"
|
||||||
|
|||||||
11
push
Executable file
11
push
Executable file
@@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
|
||||||
|
REPO="gitea"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
python3 -m pip install --upgrade twine
|
||||||
|
|
||||||
|
|
||||||
|
python3 -m twine upload --repository $REPO dist/*
|
||||||
@@ -2,3 +2,4 @@ markdown==3.6
|
|||||||
feedgenerator==2.1.0
|
feedgenerator==2.1.0
|
||||||
jinja2==3.1.4
|
jinja2==3.1.4
|
||||||
pygments==2.18.0
|
pygments==2.18.0
|
||||||
|
pymdown-extensions==10.9
|
||||||
Reference in New Issue
Block a user