diff options
Diffstat (limited to 'crates/typst-library/src')
| -rw-r--r-- | crates/typst-library/src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/typst-library/src/lib.rs b/crates/typst-library/src/lib.rs index bd135cdb..5aec0916 100644 --- a/crates/typst-library/src/lib.rs +++ b/crates/typst-library/src/lib.rs @@ -231,7 +231,9 @@ impl FromIterator<Feature> for Features { /// An in-development feature that should be enabled. #[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)] #[non_exhaustive] -pub enum Feature {} +pub enum Feature { + Html, +} /// Construct the module with global definitions. fn global(math: Module, inputs: Dict) -> Module { |
