From 2042b27a04bc281168f3732e6dfe22d3a0fe6eab Mon Sep 17 00:00:00 2001 From: Dan Neumann Date: Wed, 1 Jun 2022 18:54:23 -0500 Subject: [PATCH] Fix doc comment --- src/Html/Parser.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Html/Parser.elm b/src/Html/Parser.elm index 796c1fe..6cf99b7 100644 --- a/src/Html/Parser.elm +++ b/src/Html/Parser.elm @@ -111,8 +111,8 @@ Here is an example of providing a small subset of commonly-seen character refere |> Dict.fromList |> customCharRefs - run config "♂ $ ♀" - == Ok (Element "span" [] [Text "♂ $ ♀"]) + run config "♂ & ♀" + == Ok (Element "span" [] [Text "♂ & ♀"]) Notice that character references missing from the lookup table are simply parsed as text.