diff options
| author | Fuwn <[email protected]> | 2024-03-24 14:24:20 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-03-24 14:34:09 +0000 |
| commit | 3970616451ab4336e37a7ddfdc67f51e01e55926 (patch) | |
| tree | 6bf9fa01811004ff408ac5da40354bc34ddabc26 /README.md | |
| parent | feat(crate): bump version (diff) | |
| download | germ-3970616451ab4336e37a7ddfdc67f51e01e55926.tar.xz germ-3970616451ab4336e37a7ddfdc67f51e01e55926.zip | |
refactor: module for blocking, default to non-blocking
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 19 |
1 files changed, 10 insertions, 9 deletions
@@ -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 |