From 9a3bdca3d1d997b35a916ded10b8061b468ea0d3 Mon Sep 17 00:00:00 2001 From: sorata <136738526+brishtibheja@users.noreply.github.com> Date: Wed, 11 Sep 2024 01:14:39 +0530 Subject: [PATCH] change links to new knowledge base (#3411) * change links to new knowledge base * Fix formatting --- rslib/src/template.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/rslib/src/template.rs b/rslib/src/template.rs index 9304250fb..3e09af6ad 100644 --- a/rslib/src/template.rs +++ b/rslib/src/template.rs @@ -28,12 +28,10 @@ use crate::template_filters::apply_filters; pub type FieldMap<'a> = HashMap<&'a str, u16>; type TemplateResult = std::result::Result; -static TEMPLATE_ERROR_LINK: &str = - "https://anki.tenderapp.com/kb/problems/card-template-has-a-problem"; +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://anki.tenderapp.com/kb/problems/no-cloze-found-on-card"; +static TEMPLATE_BLANK_CLOZE_LINK: &str = "https://faqs.ankiweb.net/no-cloze-found-on-card.html"; // Lexing //----------------------------------------