mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
Fix updated template links
I forgot to update the PR before merging.
This commit is contained in:
parent
d98fc142f1
commit
479aee0883
1 changed files with 5 additions and 3 deletions
|
@ -29,9 +29,11 @@ pub type FieldMap<'a> = HashMap<&'a str, u16>;
|
||||||
type TemplateResult<T> = std::result::Result<T, TemplateError>;
|
type TemplateResult<T> = std::result::Result<T, TemplateError>;
|
||||||
|
|
||||||
static TEMPLATE_ERROR_LINK: &str =
|
static TEMPLATE_ERROR_LINK: &str =
|
||||||
"https://docs.ankiweb.net/templates/errors/replacement-errors.md";
|
"https://docs.ankiweb.net/templates/errors.html#template-syntax-error";
|
||||||
static TEMPLATE_BLANK_LINK: &str = "https://docs.ankiweb.net/templates/errors/empty-error.html";
|
static TEMPLATE_BLANK_LINK: &str =
|
||||||
static TEMPLATE_BLANK_CLOZE_LINK: &str = "https://docs.ankiweb.net/templates/errors/cloze-error.md";
|
"https://docs.ankiweb.net/templates/errors.html#front-of-card-is-blank";
|
||||||
|
static TEMPLATE_BLANK_CLOZE_LINK: &str =
|
||||||
|
"https://docs.ankiweb.net/templates/errors.html#no-cloze-filter-on-cloze-notetype";
|
||||||
|
|
||||||
// Lexing
|
// Lexing
|
||||||
//----------------------------------------
|
//----------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue