You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[^1]: Whitespace normalization means that all spans of consecutive whitespace are replaced with a single space. The files themselves are also whitespace-normalized.
96
100
97
101
## Limitations
98
-
All `XPATH` arguments must start with `//` due to a flaw in the implemention.
99
-
100
-
Only well-formed HTML can be parsed (hopefully rustdoc doesn't output mismatched tags).
102
+
`htmldocck.py` uses the xpath implementation from the standard library.
103
+
This leads to several limitations:
104
+
* All `XPATH` arguments must start with `//` due to a flaw in the implemention.
105
+
* Many XPath features (functions, axies, etc.) are not supported.
106
+
* Only well-formed HTML can be parsed (hopefully rustdoc doesn't output mismatched tags).
0 commit comments