We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 287e75f commit a263075Copy full SHA for a263075
src/HTML_Entities.jl
@@ -28,9 +28,10 @@ struct HTML_Table{T} <: AbstractEntityTable
28
ind2c::Vector{UInt16}
29
end
30
31
+const DATA_PATH = @path joinpath(@__DIR__, "../data", "html.dat")
32
+
33
function __init__()
- global default =
- HTML_Table(StrTables.load(@path(joinpath(@__DIR__, "../data", "html.dat")))...)
34
+ global default = HTML_Table(StrTables.load(DATA_PATH)...)
35
nothing
36
37
end # module HTML_Entities
0 commit comments