markdown_convert 1.2.31__tar.gz → 1.2.32__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: markdown_convert
3
- Version: 1.2.31
3
+ Version: 1.2.32
4
4
  Summary: Convert Markdown files to PDF from your command line.
5
5
  Project-URL: homepage, https://github.com/Julynx/markdown_convert
6
6
  Author-email: Julio Cabria <juliocabria@tutanota.com>
@@ -44,7 +44,14 @@ def create_sections(html):
44
44
  def wrap_section(match):
45
45
  return f"<section>\n{match.group(1)}\n{match.group(2)}\n</section>\n"
46
46
 
47
- return pattern.sub(wrap_section, html)
47
+ # Split by code blocks to avoid processing text inside them
48
+ parts = re.split(r"(<code>.*?</code>)", html, flags=re.DOTALL)
49
+ for part_index, _part in enumerate(parts):
50
+ # Only process parts that are NOT code blocks
51
+ if not parts[part_index].startswith("<code>"):
52
+ parts[part_index] = pattern.sub(wrap_section, parts[part_index])
53
+
54
+ return "".join(parts)
48
55
 
49
56
 
50
57
  def render_mermaid_diagrams(html, *, nonce):
@@ -89,6 +96,12 @@ def render_checkboxes(html):
89
96
  unchecked_html = "<input type='checkbox'>"
90
97
  checked_html = "<input type='checkbox' checked>"
91
98
 
92
- html = html.replace(unchecked, unchecked_html)
93
- html = html.replace(checked, checked_html)
94
- return html
99
+ # Split by code blocks to avoid processing text inside them
100
+ parts = re.split(r"(<code>.*?</code>)", html, flags=re.DOTALL)
101
+ for part_index, _part in enumerate(parts):
102
+ # Only process parts that are NOT code blocks
103
+ if not parts[part_index].startswith("<code>"):
104
+ parts[part_index] = parts[part_index].replace(unchecked, unchecked_html)
105
+ parts[part_index] = parts[part_index].replace(checked, checked_html)
106
+
107
+ return "".join(parts)
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "markdown_convert"
7
- version = "1.2.31"
7
+ version = "1.2.32"
8
8
  description = "Convert Markdown files to PDF from your command line."
9
9
  authors = [
10
10
  { name = "Julio Cabria", email = "juliocabria@tutanota.com" },