summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSavagePeanut <sourcehut@lazytapir.com>2023-08-02 17:45:54 -0500
committerSavagePeanut <sourcehut@lazytapir.com>2023-08-02 17:45:54 -0500
commit67d9d975d717649e3c9bd1c194e62e5f54920f15 (patch)
treee7a8786c6965397e1e96a57ffca4c6e67fe712c3
parenteb2942a595b5f6f1e7eed711659ceba8821be3a3 (diff)
update README
-rw-r--r--README.md27
-rw-r--r--pyproject.toml5
2 files changed, 27 insertions, 5 deletions
diff --git a/README.md b/README.md
index 8ea0dff..22861f1 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,27 @@
-A parsing library for Slidge. Supports parsing these attributes:
+[Github](https://github.com/BluebonnetField/slidge-style-parser)
+
+[PyPi](https://pypi.org/project/slidge-style-parser/)
+
+A parsing library for [Slidge](https://sr.ht/~nicoco/slidge). Supports parsing these attributes:
"\_underline_"
+
"\*bold*"
-"~strikethrough~"
+
+"\~strikethrough~"
+
"\`code span`"
-"\```code block```"
-">quote"
-"||spoiler||"
+
+"\```language
+
+code block
+
+```"
+
+"\>quote"
+
+"\|\|spoiler||"
+
"\\\_escape style_"
+
+Most of them correspond to [XEP-0393: Message Styling](https://xmpp.org/extensions/xep-0393.html).
diff --git a/pyproject.toml b/pyproject.toml
index f2aeb35..e0b0e4d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -12,5 +12,10 @@ classifiers = [
]
+[project.urls]
+Homepage = "https://github.com/BluebonnetField/slidge-style-parser"
+Repository = "https://github.com/BluebonnetField/slidge-style-parser"
+
+
[tool.maturin]
features = ["pyo3/extension-module"]