We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
Gumbo have a parsehtml function but reading HTML from file can be do using
parsehtml
parsehtml(read(filename, String))
Maybe a readhtml function should be defined as
readhtml
readhtml(filename, args... ; kwargs...) = parsehtml(read(filename, String), args...; kwargs...)
An other API idea could be (to mimic read API) to have the following functions:
read
parse(HTMLDocument, input)
and
read(filename, HTMLDocument)
What is your opinion about such API idea?
Kind regards
The text was updated successfully, but these errors were encountered:
An other approach could be to integrate with FileIO.jl
Sorry, something went wrong.
No branches or pull requests
Hello,
Gumbo have a
parsehtml
function but reading HTML from file can be do usingMaybe a
readhtml
function should be defined asAn other API idea could be (to mimic
read
API) to have the following functions:and
What is your opinion about such API idea?
Kind regards
The text was updated successfully, but these errors were encountered: