This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
// Pandoc filter to convert first Para on each OrderedList item into a heading of the appropriate level. | |
'use strict'; | |
var pandoc = require('pandoc-filter'); | |
var HEADER_LEVELS = { | |
'UpperRoman': 1, | |
'UpperAlpha': 2, |
NewerOlder