mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
XHTML: fix for encodings in attributes (patch by Kornel)
This commit is contained in:
parent
c83fd0eb06
commit
b5adcec28a
@ -184,7 +184,7 @@ struct StartTag
|
||||
///
|
||||
explicit StartTag(std::string const & tag, std::string const & attr,
|
||||
bool keepempty = false)
|
||||
: tag_(from_ascii(tag)), attr_(from_ascii(attr)), keepempty_(keepempty) {}
|
||||
: tag_(from_ascii(tag)), attr_(from_utf8(attr)), keepempty_(keepempty) {}
|
||||
///
|
||||
explicit StartTag(std::string const & tag, docstring const & attr,
|
||||
bool keepempty = false)
|
||||
|
Loading…
Reference in New Issue
Block a user