Skip to content

Commit

Permalink
Prepare for v0.2.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhaopudark committed May 24, 2024
1 parent b4ee8ac commit 09bfb3c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Pandoc-Filter 0.2.x
## Release 0.2.16
On Working...

## Release 0.2.15
- Modify `md2html_hash_anchor_and_internal_link_filter` to add an invisible link for each header.
Expand All @@ -18,7 +20,6 @@
- Normalize many markdown formats like emphasis(italic) and strong(bold).

## Release 0.2.14

- Modify `md2html_hash_anchor_and_internal_link_filter` to handle internal links within hexo tag plugins.
- Now, it will compulsorily modify internal_link's url, even though its target is not found.

Expand Down
4 changes: 2 additions & 2 deletions src/pandoc_filter/filters/md2html/enhance_footnote.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
def _enhance_footnote(elem:pf.Element,doc:pf.Doc,tracing_logger:TracingLogger,**kwargs)->pf.Note|None:
r"""Follow the general procedure of [Panflute](http://scorreia.com/software/panflute/)
An action to process footnotes. Deal with the footnote content as follows:
- upgrade the link like string to a `link` element.
- upgrade the link-like string to a `link` element.
- Remove unnecessary `\n`.
- Remove markdown link.
- Remove the markdown link.
- Normalize many markdown formats like emphasis(italic) and strong(bold).
[replace elements]
"""
Expand Down
2 changes: 1 addition & 1 deletion src/pandoc_filter/filters/md2md/norm_footnote.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def _norm_footnote(elem:pf.Element,doc:pf.Doc,tracing_logger:TracingLogger,**kwa
r"""Follow the general procedure of [Panflute](http://scorreia.com/software/panflute/)
An action to process footnote. Deal with the footnote content as follows:
- Remove unnecessary `\n`.
- Remove markdown link.
- Remove the markdown link.
- Normalize many markdown formats like emphasis(italic) and strong(bold).
[replace elements]
"""
Expand Down
2 changes: 1 addition & 1 deletion src/pandoc_filter/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from .utils.pandoc_helper import check_pandoc_version

check_pandoc_version(required_version='3.1.12.2')
__version__ = '0.2.15'
__version__ = '0.2.16'

0 comments on commit 09bfb3c

Please sign in to comment.