15dcb09036
* Migrate check_copyright to Rust * Add a new lint to check accidental usages of /// in ts/svelte comments * Fix a bunch of incorrect jdoc comments * Move contributor check into minilints Will allow users to detect the issue locally with './ninja check' before pushing to CI. * Make Cargo.toml consistent with other crates
37 lines
2.2 KiB
TypeScript
37 lines
2.2 KiB
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
/** These links are checked in CI to ensure they are valid. */
|
|
export const HelpPage = {
|
|
DeckOptions: {
|
|
maximumInterval: "https://docs.ankiweb.net/deck-options.html#maximum-interval",
|
|
startingEase: "https://docs.ankiweb.net/deck-options.html#starting-ease",
|
|
easyBonus: "https://docs.ankiweb.net/deck-options.html#easy-bonus",
|
|
intervalModifier: "https://docs.ankiweb.net/deck-options.html#interval-modifier",
|
|
hardInterval: "https://docs.ankiweb.net/deck-options.html#hard-interval",
|
|
newInterval: "https://docs.ankiweb.net/deck-options.html#new-interval",
|
|
advanced: "https://docs.ankiweb.net/deck-options.html#advanced",
|
|
timer: "https://docs.ankiweb.net/deck-options.html#timer",
|
|
learningSteps: "https://docs.ankiweb.net/deck-options.html#learning-steps",
|
|
graduatingInterval: "https://docs.ankiweb.net/deck-options.html#graduating-interval",
|
|
easyInterval: "https://docs.ankiweb.net/deck-options.html#easy-interval",
|
|
insertionOrder: "https://docs.ankiweb.net/deck-options.html#insertion-order",
|
|
newCards: "https://docs.ankiweb.net/deck-options.html#new-cards",
|
|
relearningSteps: "https://docs.ankiweb.net/deck-options.html#relearning-steps",
|
|
minimumInterval: "https://docs.ankiweb.net/deck-options.html#minimum-interval",
|
|
lapses: "https://docs.ankiweb.net/deck-options.html#lapses",
|
|
displayOrder: "https://docs.ankiweb.net/deck-options.html#display-order",
|
|
maximumReviewsday: "https://docs.ankiweb.net/deck-options.html#maximum-reviewsday",
|
|
newCardsday: "https://docs.ankiweb.net/deck-options.html#new-cardsday",
|
|
dailyLimits: "https://docs.ankiweb.net/deck-options.html#daily-limits",
|
|
audio: "https://docs.ankiweb.net/deck-options.html#audio",
|
|
},
|
|
Leeches: {
|
|
leeches: "https://docs.ankiweb.net/leeches.html#leeches",
|
|
waiting: "https://docs.ankiweb.net/leeches.html#waiting",
|
|
},
|
|
Studying: {
|
|
siblingsAndBurying: "https://docs.ankiweb.net/studying.html#siblings-and-burying",
|
|
},
|
|
};
|