From 10830d558334817d56572755d4129284794277f0 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Wed, 24 Jan 2024 18:19:01 +0100 Subject: [PATCH] html: cleanup Signed-off-by: Simon Rozman --- include/stdex/html.hpp | 44 +++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/include/stdex/html.hpp b/include/stdex/html.hpp index b3cffebaa..7105cb0cb 100644 --- a/include/stdex/html.hpp +++ b/include/stdex/html.hpp @@ -1584,7 +1584,7 @@ namespace stdex template, class AX = std::allocator> struct entity { - stdex::interval name; ///< Name position in source + stdex::interval name; ///< Name position in source std::basic_string value; ///< Entity value }; @@ -1917,15 +1917,15 @@ namespace stdex } protected: - std::basic_string m_source; ///< Document HTML source code - size_t m_num_parsed; ///< Number of characters already parsed - stdex::charset_id m_charset; ///< Document charset + std::basic_string m_source; ///< Document HTML source code + size_t m_num_parsed; ///< Number of characters already parsed + stdex::charset_id m_charset; ///< Document charset // Declaration parsing data - size_t m_num_valid_conditions; ///< Number of started valid conditions - size_t m_num_invalid_conditions; ///< Number of started invalid conditions - bool m_is_cdata; ///< Inside of CDATA? - bool m_is_rcdata; ///< Inside of RCDATA? + size_t m_num_valid_conditions; ///< Number of started valid conditions + size_t m_num_invalid_conditions; ///< Number of started invalid conditions + bool m_is_cdata; ///< Inside of CDATA? + bool m_is_rcdata; ///< Inside of RCDATA? stdex::parser::basic_html_declaration_condition_start m_condition_start; stdex::parser::basic_html_declaration_condition_end m_condition_end; stdex::parser::basic_any_cu m_any_char; @@ -1933,9 +1933,9 @@ namespace stdex // Element parsing data stdex::parser::basic_html_tag m_tag; - sequence_store m_sequences; ///< Store of sequences - std::vector m_element_stack; ///< LIFO stack of started elements - bool m_is_special_element; ///< Inside of a special element (