Add links to additional title/lang requirements

Signed-off-by: Evan Lloyd New-Schmidt <evan@new-schmidt.com>
This commit is contained in:
Evan Lloyd New-Schmidt 2024-04-28 14:25:37 -04:00 committed by Evan Lloyd New-Schmidt
parent 3d908a2866
commit 775e23cf1e

View file

@ -115,6 +115,12 @@ impl Title {
return Err(ParseTitleError::TitleLong);
}
// TODO: titles have a number of restrictions, including containing percent-encoded characters
// See <https://en.wikipedia.org/wiki/Wikipedia:Page_name#Technical_restrictions_and_limitations>
// TODO: special titles in "namespaces" start with a word and colon. They should not be linked from OSM.
// See <https://en.wikipedia.org/wiki/Wikipedia:Namespace>
let lang = lang.trim();
if lang.is_empty() {
return Err(ParseTitleError::NoLang);