aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-03-24 14:24:20 +0000
committerFuwn <[email protected]>2024-03-24 14:34:09 +0000
commit3970616451ab4336e37a7ddfdc67f51e01e55926 (patch)
tree6bf9fa01811004ff408ac5da40354bc34ddabc26 /README.md
parentfeat(crate): bump version (diff)
downloadgerm-3970616451ab4336e37a7ddfdc67f51e01e55926.tar.xz
germ-3970616451ab4336e37a7ddfdc67f51e01e55926.zip
refactor: module for blocking, default to non-blocking
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 10 insertions, 9 deletions
diff --git a/README.md b/README.md
index 26b0e01..7dfc35c 100644
--- a/README.md
+++ b/README.md
@@ -39,15 +39,16 @@ features = ["ast"] # Enable the features you would like to use!
### Features
-| Feature | Description |
-| --------- | ---------------------------------------------------------------- |
-| `ast` | Construct AST trees from raw Gemtext. |
-| `convert` | Convert from Gemtext to markup formats such as HTML or Markdown. |
-| `request` | Make Gemini requests and get sane, structured results. |
-| `meta` | Structure-ize a Gemini response's meta section |
-| `macros` | Macros to aid with various Germ-related functionalities |
-| `quick` | Quick functions to create valid Gemtext elements from input |
-| `sync` | An asynchronous version of `request` |
+| Feature | Description |
+| ---------- | ---------------------------------------------------------------- |
+| `default` | `ast`, `convert`, `meta`, `request` |
+| `ast` | Construct AST trees from raw Gemtext. |
+| `blocking` | Blocking equivalent of `request` |
+| `convert` | Convert from Gemtext to markup formats such as HTML or Markdown. |
+| `request` | Make Gemini requests and get sane, structured results. |
+| `meta` | Structure-ize a Gemini response's meta section |
+| `macros` | Macros to aid with various Germ-related functionalities |
+| `quick` | Quick functions to create valid Gemtext elements from input |
### Examples