include period after number in ordered lists when parsing apple dev docs

main
Lee Hanken 2022-05-03 12:15:56 +01:00
parent 801f7525c3
commit 92b4790bd0
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ module.exports = {
n=0; n=0;
content.items.forEach((list_item, i) => { content.items.forEach((list_item, i) => {
n = n + 1; n = n + 1;
text += n + " " + this.process_content_section(list_item, ignore_links); text += n + ". " + this.process_content_section(list_item, ignore_links);
}); });
} }
} else if (content.type == 'heading') { } else if (content.type == 'heading') {