Skip to content

Commit

Permalink
Improving HTML representation
Browse files Browse the repository at this point in the history
  • Loading branch information
cadojo committed Aug 20, 2023
1 parent bd9fef1 commit ac603b7
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 = "CommonLicenses"
uuid = "31d8bc61-a8a5-4aaa-ae43-a3b73cb73fef"
authors = ["Joe Carpinelli <[email protected]>"]
version = "0.1.0"
version = "0.1.1"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
2 changes: 1 addition & 1 deletion src/interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function Base.show(io::IO, ::MIME"text/html", license::AbstractLicense)
contract = replace(text(license), "\n" => "<br>")
content = """
<details>
<summary>License</summary>
<summary>$(name(license))</summary>
<code>
$(contract)
</code>
Expand Down

2 comments on commit ac603b7

@cadojo
Copy link
Owner Author

@cadojo cadojo commented on ac603b7 Aug 20, 2023

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/89952

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.1.1 -m "<description of version>" ac603b7c335bd16251eb8b78cefb81ff06934f35
git push origin v0.1.1

Please sign in to comment.