Skip to content

Commit

Permalink
Fixed formatting bug in seeded blog text
Browse files Browse the repository at this point in the history
  • Loading branch information
tidyui committed Nov 11, 2021
1 parent 4a60f35 commit 3d5f4df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nuspec/Piranha.Templates.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<id>Piranha.Templates</id>
<version>10.0.0</version>
<version>10.0.1</version>
<title>Piranha CMS Templates</title>
<authors>Piranha CMS</authors>
<owners>Piranha CMS</owners>
Expand Down
2 changes: 1 addition & 1 deletion src/web/mvc/Controllers/SetupController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ await _api.Media.SaveAsync(new Piranha.Models.StreamMediaContent()
post3.Blocks.Add(new HtmlBlock
{
Body =
"<p class=\"lead\">Big thanks to [@aatmmr](https://github.com/aatmmr), [@brianpopow](https://github.com/brianpopow) and [@tedvanderveen](https://github.com/tedvanderveen) for their contributions and all of the people who has helped with translating the manager.</p>"
"<p class=\"lead\">Big thanks to <a href=\"https://github.com/aatmmr\">@aatmmr</a>, <a href=\"https://github.com/brianpopow\">@brianpopow</a> and <a href=\"https://github.com/tedvanderveen\">@tedvanderveen</a> for their contributions and all of the people who has helped with translating the manager.</p>"
});
post3.Blocks.Add(new ColumnBlock
{
Expand Down
2 changes: 1 addition & 1 deletion src/web/razor/Controllers/SetupController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ await _api.Media.SaveAsync(new Piranha.Models.StreamMediaContent()
post3.Blocks.Add(new HtmlBlock
{
Body =
"<p class=\"lead\">Big thanks to [@aatmmr](https://github.com/aatmmr), [@brianpopow](https://github.com/brianpopow) and [@tedvanderveen](https://github.com/tedvanderveen) for their contributions and all of the people who has helped with translating the manager.</p>"
"<p class=\"lead\">Big thanks to <a href=\"https://github.com/aatmmr\">@aatmmr</a>, <a href=\"https://github.com/brianpopow\">@brianpopow</a> and <a href=\"https://github.com/tedvanderveen\">@tedvanderveen</a> for their contributions and all of the people who has helped with translating the manager.</p>"
});
post3.Blocks.Add(new ColumnBlock
{
Expand Down

0 comments on commit 3d5f4df

Please sign in to comment.