Doc comments are show in HTML documentation.

This is not a proper documentation, just a note on implementation.
This commit is contained in:
Hocuri
2020-10-15 12:16:29 +02:00
committed by holger krekel
parent 4d2542cee5
commit 3c6d52842e

View File

@@ -20,8 +20,8 @@ enum AddText {
YesPreserveLineEnds,
}
/// dehtml() returns way too many newlines; however, an optimisation on this issue is not needed as
/// the newlines are typically removed in further processing by the caller
// dehtml() returns way too many newlines; however, an optimisation on this issue is not needed as
// the newlines are typically removed in further processing by the caller
pub fn dehtml(buf: &str) -> Option<String> {
let s = dehtml_quick_xml(buf);
if !s.trim().is_empty() {