Skip to content

Commit

Permalink
add prepath fix for action=
Browse files Browse the repository at this point in the history
  • Loading branch information
tlienart committed Aug 18, 2021
1 parent 3dedf53 commit 8491936
Show file tree
Hide file tree
Showing 2 changed files with 2 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.46"
version = "0.10.47"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
2 changes: 1 addition & 1 deletion src/regexes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ const HFUN_PARAMS_PAT = r"([^\s\"']+)|\"([^\"]*)\""
See [`fix_links`](@ref).
"""
const PREPATH_FIX_PAT = r"(src|href|formaction|url)\s*?=\s*?([\"\']?)\/"
const PREPATH_FIX_PAT = r"(src|href|formaction|action|url)\s*?=\s*?([\"\']?)\/"

#= =====================================================
Pattern checkers
Expand Down

2 comments on commit 8491936

@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/43101

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.47 -m "<description of version>" 8491936ed7d3a3e1d58e0affcbc1ff25a796bee7
git push origin v0.10.47

Please sign in to comment.