Skip to content

Commit

Permalink
v1
Browse files Browse the repository at this point in the history
  • Loading branch information
essenciary committed Jul 29, 2020
1 parent e91bf84 commit f0b9fa2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/renderers/Html.jl
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ end
Generated functions that represent Julia functions definitions corresponding to HTML elements.
"""
function register_elements() :: Nothing
function register_elements(; context = @__MODULE__) :: Nothing
for elem in NORMAL_ELEMENTS
register_normal_element(elem)
end
Expand All @@ -726,6 +726,7 @@ function register_elements() :: Nothing

for elem in CUSTOM_ELEMENTS
Core.eval(@__MODULE__, """include("html/$elem.jl")""" |> Meta.parse)
elem in NON_EXPORTED || Core.eval(context, "export $elem" |> Meta.parse)
end

nothing
Expand Down

2 comments on commit f0b9fa2

@essenciary
Copy link
Member 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/18683

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 v1.0.0 -m "<description of version>" f0b9fa235b011a66d7f8348fc619b0220a2073de
git push origin v1.0.0

Please sign in to comment.