mirror of
https://onedev.site.tesses.net/crosslang
synced 2026-02-08 17:15:45 +00:00
Fix html tags
This commit is contained in:
@@ -245,6 +245,9 @@ namespace Tesses::CrossLang
|
|||||||
}
|
}
|
||||||
if(txt == tokens[i].text)
|
if(txt == tokens[i].text)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
tkn = tokens[i];
|
||||||
|
i++;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -254,6 +257,9 @@ namespace Tesses::CrossLang
|
|||||||
{
|
{
|
||||||
if(tokens[i].text == ">" && tokens[i+1].text == ">=" && tokens[i].type == LexTokenType::Symbol && tokens[i+1].type == LexTokenType::Symbol)
|
if(tokens[i].text == ">" && tokens[i+1].text == ">=" && tokens[i].type == LexTokenType::Symbol && tokens[i+1].type == LexTokenType::Symbol)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
tkn = tokens[i];
|
||||||
|
i+=2;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -268,6 +274,8 @@ namespace Tesses::CrossLang
|
|||||||
{
|
{
|
||||||
if(tokens[i].text == ">" && tokens[i+1].text == ">" && tokens[i].type == LexTokenType::Symbol && tokens[i+1].type == LexTokenType::Symbol)
|
if(tokens[i].text == ">" && tokens[i+1].text == ">" && tokens[i].type == LexTokenType::Symbol && tokens[i+1].type == LexTokenType::Symbol)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
tkn = tokens[i];
|
||||||
i+=2;
|
i+=2;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user