tinymist_assets/lib.rs
1/// If this file is not found, please refer to <https://enter-tainer.github.io/typst-preview/dev.html> to build the frontend.
2#[cfg(feature = "typst-preview")]
3pub const TYPST_PREVIEW_HTML: &str = include_str!("typst-preview.html");
4#[cfg(not(feature = "typst-preview"))]
5pub const TYPST_PREVIEW_HTML: &str = "<html><body>Typst Preview needs to be built with the `embed-html` feature to work!</body></html>";
6
7/// If this file is not found, please runs `yarn extract:l10n:rs` to extract the
8/// localization data.
9#[cfg(feature = "l10n")]
10pub const L10N_DATA: &str = include_str!("tinymist-rt.toml");
11#[cfg(not(feature = "l10n"))]
12pub const L10N_DATA: &str = "";