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
Create an automatic link checker for checking links in markdown cells:
The text was updated successfully, but these errors were encountered:
Possibly useful: https://github.com/scivision/linkchecker-markdown
Or we can just grab its link extractor:
import re regex = r"https?://[a-zA-Z0-9][a-zA-Z0-9-]{1,61}[a-zA-Z0-9]\.[=a-zA-Z0-9\_\/\?\&\%\+\#\.\-]+" glob = re.compile(regex) txt=""" sdsd sd http://www.open.ac.uk and [](https://bbc.co.uk/dsdsds)""" urls = glob.findall(txt) #urls = glob.findall(fn.read_text(errors="ignore")) urls
Perhaps also make use of https://github.com/innovationOUtside/ouxml-link-checker/
Sorry, something went wrong.
No branches or pull requests
Create an automatic link checker for checking links in markdown cells:
The text was updated successfully, but these errors were encountered: