#38: Log wikitext errors

This commit is contained in:
mtkennerly 2024-01-30 04:00:07 -05:00
parent fd2fedeeff
commit 5813c9aa8d
No known key found for this signature in database
GPG key ID: E764BE00BE6E6408
4 changed files with 29 additions and 2 deletions

View file

@ -613304,6 +613304,29 @@ Vampires!:
steam:
id: 903200
Vampyr:
files:
"<winLocalAppData>/AVGame/Saved/Config/WindowsNoEditor":
tags:
- config
when:
- os: windows
"<winLocalAppData>/AVGame/Saved/SaveGames":
tags:
- save
when:
- os: windows
"<winLocalAppData>/Packages/FocusHomeInteractiveSA.VAMPYR_4hny5m903y3g0/LocalCache/Local/AVGame/Saved/Config/WindowsNoEditor":
tags:
- config
when:
- os: windows
store: microsoft
"<winLocalAppData>/Packages/FocusHomeInteractiveSA.VAMPYR_4hny5m903y3g0/LocalCache/Local/AVGame/Saved/SaveGames":
tags:
- save
when:
- os: windows
store: microsoft
gog:
id: 2098644729
id:

View file

@ -34801,7 +34801,6 @@
* [Vampires' Melody](https://www.pcgamingwiki.com/wiki/?curid=164286)
* [Vampires: Guide Them to Safety!](https://www.pcgamingwiki.com/wiki/?curid=49476)
* [Vampirina's Nails](https://www.pcgamingwiki.com/wiki/?curid=103325)
* [Vampyr](https://www.pcgamingwiki.com/wiki/?curid=63506)
* [Vanaris Tactics](https://www.pcgamingwiki.com/wiki/?curid=172891)
* [Vandal Hearts](https://www.pcgamingwiki.com/wiki/?curid=181494)
* [Vanessa Saint-Pierre Delacroix and Her Nightmare](https://www.pcgamingwiki.com/wiki/?curid=187188)

View file

@ -184364,6 +184364,11 @@ Vampyr:
steam: 427290
steamSide:
- 728850
templates:
- "{{Game data/config|Windows|{{P|localappdata}}\\AVGame\\Saved\\Config\\WindowsNoEditor}}"
- "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\FocusHomeInteractiveSA.VAMPYR_4hny5m903y3g0\\LocalCache\\Local\\AVGame\\Saved\\Config\\WindowsNoEditor}}"
- "{{Game data/saves|Windows|{{P|localappdata}}\\AVGame\\Saved\\SaveGames}}"
- "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\FocusHomeInteractiveSA.VAMPYR_4hny5m903y3g0\\LocalCache\\Local\\AVGame\\Saved\\SaveGames}}"
"Vampyr: Talisman of Invocation":
pageId: 76497
templates:

View file

@ -366,7 +366,7 @@ impl WikiCacheEntry {
.as_str()
.ok_or(Error::WikiData("parse.wikitext"))?;
let wikitext = wikitext_parser::parse_wikitext(raw_wikitext, article, |_| ());
let wikitext = wikitext_parser::parse_wikitext(raw_wikitext, article, |e| println!(" Error: {}", e));
for template in wikitext.list_double_brace_expressions() {
if let TextPiece::DoubleBraceExpression { tag, attributes } = &template {