mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-29 20:44:25 +00:00
remove extra space from tag values
This commit is contained in:
parent
3387de7f84
commit
e17a47bb85
@ -140,7 +140,7 @@ bool Reader::Line::Match::header(
|
||||
Glib::ustring & text
|
||||
) {
|
||||
auto match = Glib::Regex::split_simple(
|
||||
R"regex(^(#{1,3})(.*)$)regex",
|
||||
R"regex(^(#{1,3})\s*(.*)$)regex",
|
||||
GEMTEXT
|
||||
);
|
||||
|
||||
@ -189,7 +189,7 @@ bool Reader::Line::Match::quote(
|
||||
Glib::ustring & quote
|
||||
) {
|
||||
auto match = Glib::Regex::split_simple(
|
||||
R"regex(^>(.*)$)regex",
|
||||
R"regex(^>\s*(.*)$)regex",
|
||||
GEMTEXT
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user