mirror of
https://github.com/typst/typst
synced 2025-06-28 16:22:53 +08:00
16 lines
256 B
Rust
16 lines
256 B
Rust
//! Modifiable symbols.
|
|
|
|
mod emoji;
|
|
mod sym;
|
|
|
|
pub use emoji::*;
|
|
pub use sym::*;
|
|
|
|
use crate::prelude::*;
|
|
|
|
/// Hook up all symbol definitions.
|
|
pub(super) fn define(global: &mut Scope) {
|
|
global.define("sym", sym());
|
|
global.define("emoji", emoji());
|
|
}
|