mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Change links in error messages (#3468)
* Update template.rs * Update template.rs * ./check (dae)
This commit is contained in:
parent
407e2dc43b
commit
d98fc142f1
1 changed files with 4 additions and 4 deletions
|
@ -28,10 +28,10 @@ use crate::template_filters::apply_filters;
|
|||
pub type FieldMap<'a> = HashMap<&'a str, u16>;
|
||||
type TemplateResult<T> = std::result::Result<T, TemplateError>;
|
||||
|
||||
static TEMPLATE_ERROR_LINK: &str = "https://faqs.ankiweb.net/card-template-has-a-problem.html";
|
||||
static TEMPLATE_BLANK_LINK: &str =
|
||||
"https://anki.tenderapp.com/kb/card-appearance/the-front-of-this-card-is-blank";
|
||||
static TEMPLATE_BLANK_CLOZE_LINK: &str = "https://faqs.ankiweb.net/no-cloze-found-on-card.html";
|
||||
static TEMPLATE_ERROR_LINK: &str =
|
||||
"https://docs.ankiweb.net/templates/errors/replacement-errors.md";
|
||||
static TEMPLATE_BLANK_LINK: &str = "https://docs.ankiweb.net/templates/errors/empty-error.html";
|
||||
static TEMPLATE_BLANK_CLOZE_LINK: &str = "https://docs.ankiweb.net/templates/errors/cloze-error.md";
|
||||
|
||||
// Lexing
|
||||
//----------------------------------------
|
||||
|
|
Loading…
Reference in a new issue