mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 04:24:09 +00:00
+! Basic support for comments in dsl ({{like this}})
This commit is contained in:
parent
5d95a6a17a
commit
dfb067b370
|
@ -228,6 +228,45 @@ ArticleDom::ArticleDom( wstring const & str ):
|
||||||
}
|
}
|
||||||
} // if ( ch == '<' )
|
} // if ( ch == '<' )
|
||||||
|
|
||||||
|
if ( ch == L'{' && !escaped )
|
||||||
|
{
|
||||||
|
// Special case: {{comment}}
|
||||||
|
|
||||||
|
nextChar();
|
||||||
|
|
||||||
|
if ( ch != L'{' || escaped )
|
||||||
|
{
|
||||||
|
// Ok, it's not it.
|
||||||
|
--stringPos;
|
||||||
|
|
||||||
|
if ( escaped )
|
||||||
|
{
|
||||||
|
--stringPos;
|
||||||
|
escaped = false;
|
||||||
|
}
|
||||||
|
ch = L'{';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Skip the comment's body
|
||||||
|
for( ; ; )
|
||||||
|
{
|
||||||
|
nextChar();
|
||||||
|
|
||||||
|
// Is it the end?
|
||||||
|
if ( ch == L'}' && !escaped )
|
||||||
|
{
|
||||||
|
nextChar();
|
||||||
|
|
||||||
|
if ( ch == L'}' && !escaped )
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
} // if ( ch == '{' )
|
||||||
|
|
||||||
// If we're here, we've got a normal symbol, to be saved as text.
|
// If we're here, we've got a normal symbol, to be saved as text.
|
||||||
|
|
||||||
// If there's currently no text node, open one
|
// If there's currently no text node, open one
|
||||||
|
|
Loading…
Reference in a new issue