diff options
| -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 |