cleanup...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2022-12-02 13:06:16 +03:00
parent 7a86d47230
commit b575aaf784
2 changed files with 2 additions and 5 deletions

View File

@ -1673,7 +1673,6 @@ object.Constructor('Page', BasePage, {
'!': true, '!': true,
// XXX EXPERIMENTAL... // XXX EXPERIMENTAL...
quote: true, quote: true,
'quote!': true,
}, },
// XXX should this be .raw or .parse()??? // XXX should this be .raw or .parse()???
@ -1691,10 +1690,6 @@ object.Constructor('Page', BasePage, {
return res instanceof Array ? return res instanceof Array ?
res.map(pwpath.quoteHTML) res.map(pwpath.quoteHTML)
: pwpath.quoteHTML(res) }) }, : pwpath.quoteHTML(res) }) },
'quote!': Object.assign(
function(){
return this.quote(true) },
{energetic: true}),
// events... // events...

View File

@ -38,6 +38,8 @@
* *
* *
* *
* XXX BUG: seems that page caching stopped working...
* ...are we over-refreshing???
* XXX BUG: for some reason editing the root page ('/') hangs /tree... * XXX BUG: for some reason editing the root page ('/') hangs /tree...
* XXX .parse(..): should we handle pattern paths and lists of text??? * XXX .parse(..): should we handle pattern paths and lists of text???
* XXX parser: error handling: add line number + context... (???) * XXX parser: error handling: add line number + context... (???)