Skip to content

Commit

Permalink
br fix (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
tlienart authored Mar 30, 2020
1 parent 1411dbc commit 5679853
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.6.15"
version = "0.6.16"

This comment has been minimized.

Copy link
@tlienart

tlienart Mar 30, 2020

Author Owner

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
2 changes: 1 addition & 1 deletion src/manager/rss_generator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function rss_generator()::Nothing
<item>
<title>$(v.title)</title>
<link>$(full_link)</link>
<description><![CDATA[$(fix_relative_links(v.description, rss_link))</br><a href=\"$full_link\">Read more</a>]]></description>
<description><![CDATA[$(fix_relative_links(v.description, rss_link))<br><a href=\"$full_link\">Read more</a>]]></description>
""")
for elem in (:author, :category, :comments, :enclosure)
e = getproperty(v, elem)
Expand Down

1 comment on commit 5679853

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

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.6.16 -m "<description of version>" 5679853a297eec11f9423146a5848e5c5b8e236d
git push origin v0.6.16

Please sign in to comment.