include period after number in ordered lists when parsing apple dev docs
parent
801f7525c3
commit
92b4790bd0
|
@ -160,7 +160,7 @@ module.exports = {
|
|||
n=0;
|
||||
content.items.forEach((list_item, i) => {
|
||||
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') {
|
||||
|
|
Loading…
Reference in New Issue