diff options
| author | Fuwn <[email protected]> | 2022-06-14 09:11:27 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-14 09:11:27 +0000 |
| commit | 8abd4a479c2f8801c71fcf48b2c9f2d27277ae62 (patch) | |
| tree | 75fb335687331cae7a834c7e5cf32fe88e6bd24e | |
| parent | fix(germ): readme location (diff) | |
| download | germ-8abd4a479c2f8801c71fcf48b2c9f2d27277ae62.tar.xz germ-8abd4a479c2f8801c71fcf48b2c9f2d27277ae62.zip | |
fix(readme): add macros feature
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | crates/germ/src/ast/macros.rs | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -44,6 +44,7 @@ features = ["ast"] # Enable the features you would like to use! | `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 | ### Examples diff --git a/crates/germ/src/ast/macros.rs b/crates/germ/src/ast/macros.rs index 369e79e..c2e5a85 100644 --- a/crates/germ/src/ast/macros.rs +++ b/crates/germ/src/ast/macros.rs @@ -16,8 +16,6 @@ // Copyright (C) 2022-2022 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only -//! Macros to aid with various Germ-related functionalities. - /// Convert Gemtext an `Ast` /// /// # Examples |