mirror of
https://github.com/venthur/blag.git
synced 2025-11-25 20:52:43 +00:00
Compare commits
1 Commits
2.3.3
...
4cc23cea5f
| Author | SHA1 | Date | |
|---|---|---|---|
|
4cc23cea5f
|
@@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
|
||||
## [2.4.0] -- 2024-09-05
|
||||
|
||||
* added strikethru and footnotes to blag renders.
|
||||
|
||||
## [unreleased] --
|
||||
|
||||
* Added changelog to docs
|
||||
|
||||
@@ -30,6 +30,8 @@ def markdown_factory() -> Markdown:
|
||||
"""
|
||||
md = Markdown(
|
||||
extensions=[
|
||||
"footnotes", # Add footnotes support
|
||||
"pymdownx.tilde", # Add strukethrough support
|
||||
"meta",
|
||||
"fenced_code",
|
||||
"codehilite",
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
"""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
|
||||
jinja2==3.1.4
|
||||
pygments==2.18.0
|
||||
pymdown-extensions==10.9
|
||||
Reference in New Issue
Block a user