This repository has been archived by the owner on May 17, 2024. It is now read-only.
Replies: 1 comment
-
I wonder if this could be used for the Textbook itself as well, which are mostly Jupyter notebooks? It would solve a common, frustrating problem that professors face |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all!
On of the problems in qiskit.org/documentation is the amount of deprecation warnings and errors like this one. I'm trying to find a way to keep an eye on them.
The options so far:
piggybacking google
@y4izus had the idea of using google for finding errors. For example searching for
site:qiskit.org/documentation "deprecationwarning:"
On the bad side, this output is a bit noisy as it also returns false positives, such as when the string
DeprecationWarning
is in source code, because the:
is being ignored. Also, it needs some time for cache updating after deploying.On the good side, it is fast and simple. The google bot manages to capture DOM modified by javascript and this is detectable.
web scraping
This script, mirrors the website and allows for searches in the html dump:
However, does not detect the
Misplaced &
issue.Any other idea on how to monitor documentation errors?
Beta Was this translation helpful? Give feedback.
All reactions