#38: Log wikitext errors
This commit is contained in:
parent
fd2fedeeff
commit
5813c9aa8d
4 changed files with 29 additions and 2 deletions
|
@ -613304,6 +613304,29 @@ Vampires!:
|
||||||
steam:
|
steam:
|
||||||
id: 903200
|
id: 903200
|
||||||
Vampyr:
|
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:
|
gog:
|
||||||
id: 2098644729
|
id: 2098644729
|
||||||
id:
|
id:
|
||||||
|
|
|
@ -34801,7 +34801,6 @@
|
||||||
* [Vampires' Melody](https://www.pcgamingwiki.com/wiki/?curid=164286)
|
* [Vampires' Melody](https://www.pcgamingwiki.com/wiki/?curid=164286)
|
||||||
* [Vampires: Guide Them to Safety!](https://www.pcgamingwiki.com/wiki/?curid=49476)
|
* [Vampires: Guide Them to Safety!](https://www.pcgamingwiki.com/wiki/?curid=49476)
|
||||||
* [Vampirina's Nails](https://www.pcgamingwiki.com/wiki/?curid=103325)
|
* [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)
|
* [Vanaris Tactics](https://www.pcgamingwiki.com/wiki/?curid=172891)
|
||||||
* [Vandal Hearts](https://www.pcgamingwiki.com/wiki/?curid=181494)
|
* [Vandal Hearts](https://www.pcgamingwiki.com/wiki/?curid=181494)
|
||||||
* [Vanessa Saint-Pierre Delacroix and Her Nightmare](https://www.pcgamingwiki.com/wiki/?curid=187188)
|
* [Vanessa Saint-Pierre Delacroix and Her Nightmare](https://www.pcgamingwiki.com/wiki/?curid=187188)
|
||||||
|
|
|
@ -184364,6 +184364,11 @@ Vampyr:
|
||||||
steam: 427290
|
steam: 427290
|
||||||
steamSide:
|
steamSide:
|
||||||
- 728850
|
- 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":
|
"Vampyr: Talisman of Invocation":
|
||||||
pageId: 76497
|
pageId: 76497
|
||||||
templates:
|
templates:
|
||||||
|
|
|
@ -366,7 +366,7 @@ impl WikiCacheEntry {
|
||||||
.as_str()
|
.as_str()
|
||||||
.ok_or(Error::WikiData("parse.wikitext"))?;
|
.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() {
|
for template in wikitext.list_double_brace_expressions() {
|
||||||
if let TextPiece::DoubleBraceExpression { tag, attributes } = &template {
|
if let TextPiece::DoubleBraceExpression { tag, attributes } = &template {
|
||||||
|
|
Reference in a new issue