mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 07:23:00 +00:00
docs: fix the 1st command documented not showing up in the site
Rogue .slice(1)
This commit is contained in:
parent
c8e717a6d6
commit
7236232dc0
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ let { sections, categories } = parse_sections(fs.readFileSync(
|
||||||
"utf-8"
|
"utf-8"
|
||||||
))
|
))
|
||||||
|
|
||||||
sections = sections.slice(1).sort((a, b) => a.title.replace(/^\/+/g, "").localeCompare(
|
sections = sections.sort((a, b) => a.title.replace(/^\/+/g, "").localeCompare(
|
||||||
b.title.replace(/^\/+/g, "")));
|
b.title.replace(/^\/+/g, "")));
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,7 @@ module.exports = function parse_sections(source) {
|
||||||
for(let line of lines) {
|
for(let line of lines) {
|
||||||
|
|
||||||
if(line.startsWith(`#`)) {
|
if(line.startsWith(`#`)) {
|
||||||
let heading_level = line.match(/^#+/)[0].length
|
let heading_level = line.match(/^#+/)[0].length;
|
||||||
|
|
||||||
// 1: Deal with the previous section
|
// 1: Deal with the previous section
|
||||||
if(acc.length > 0) {
|
if(acc.length > 0) {
|
||||||
|
|
Loading…
Reference in a new issue