Skip to content

Commit 89e2898

Browse files
committed
docs: documented
1 parent 56aa9cb commit 89e2898

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ In all, text2markdown is capable of:
88
- Segmenting text into nested sections.
99
- Hyperlinking cross-references within texts to other sections.
1010
- Italicizing cited documents.
11+
- Italicizing defined terms.
1112
- Detecting and formatting block quotations.
1213
- Striking through junk text.
1314

@@ -75,8 +76,9 @@ output = text2markdown(
7576
link_xrefs=True,
7677
strike_junk=True,
7778
block_quotes=True,
78-
italicize_refs=True,
7979
escape_lists=True,
80+
italicize_refs=True,
81+
italicize_terms=True,
8082
enrichment_model="kanon-2-enricher",
8183
isaacus_client=Isaacus(),
8284
)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "text2markdown"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = [{ name = "Isaacus", email = "support@isaacus.com" }]
55
description = "A Python library for intelligently converting text into Markdown."
66
readme = "README.md"

0 commit comments

Comments
 (0)