remove extra space from tag values

This commit is contained in:
yggverse 2024-09-14 17:10:20 +03:00
parent 3387de7f84
commit e17a47bb85

View File

@ -140,7 +140,7 @@ bool Reader::Line::Match::header(
Glib::ustring & text Glib::ustring & text
) { ) {
auto match = Glib::Regex::split_simple( auto match = Glib::Regex::split_simple(
R"regex(^(#{1,3})(.*)$)regex", R"regex(^(#{1,3})\s*(.*)$)regex",
GEMTEXT GEMTEXT
); );
@ -189,7 +189,7 @@ bool Reader::Line::Match::quote(
Glib::ustring & quote Glib::ustring & quote
) { ) {
auto match = Glib::Regex::split_simple( auto match = Glib::Regex::split_simple(
R"regex(^>(.*)$)regex", R"regex(^>\s*(.*)$)regex",
GEMTEXT GEMTEXT
); );