Skip to content

Commit

Permalink
closes #917
Browse files Browse the repository at this point in the history
  • Loading branch information
tlienart committed Nov 2, 2021
1 parent c901920 commit a66817e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Franklin"
uuid = "713c75ef-9fc9-4b05-94a9-213340da978e"
authors = ["Thibaut Lienart <[email protected]>"]
version = "0.10.62"
version = "0.10.63"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
4 changes: 3 additions & 1 deletion src/utils/html.jl
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,9 @@ const _htmlesc_to = values(_htmlescape_chars) |> collect
Internal function to check if some html code has been escaped.
"""
is_html_escaped(cs::AS) =
!isnothing(findfirst(ss -> occursin(ss, cs), _htmlesc_to))
!isnothing(findfirst(ss -> occursin(ss, cs), _htmlesc_to)) &&
isnothing(findfirst('<', cs)) # issue #917


"""
html_unescape
Expand Down

2 comments on commit a66817e

@tlienart
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/47937

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.10.63 -m "<description of version>" a66817ef87c16fb5ae7c47e7c15ea5da68f3b6a0
git push origin v0.10.63

Please sign in to comment.