Syntax highlighting not working in MD files for Jekyll?
问题 The syntax highlighter does not seem to be working in Jekyll using the kramdown parser and rouge gem. Quotes also do not show up highlighted and formatted. Markdown file: ```javascript function order(words){ var array = words.split(' '); var result = array.slice(); for (word in array) { for (var i = 0; i < array[word].length; i++) { if (!isNaN(array[word][i])) { result[array[word][i] - 1] = array[word] } } }return result.join(' '); } ``` My config file listed below. config.yml: # Build