mirror of
https://github.com/ziglang/zig.git
synced 2026-02-20 08:14:48 +00:00
Std docs: Fix a js error that would cause some function to be not rendered
This commit is contained in:
parent
f2d0d9820d
commit
03603ea353
@ -1369,7 +1369,7 @@
|
||||
line.text = line.text.substr(1);
|
||||
}
|
||||
else if (line.text.match(/\d+\./)) {
|
||||
const match = line.match(/(\d+)\./);
|
||||
const match = line.text.match(/(\d+)\./);
|
||||
line.type = "ul";
|
||||
line.text = line.text.substr(match[0].length);
|
||||
line.ordered_number = Number(match[1].length);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user