I am using editor.md,
the editor display line numbers as default,
I want to hide the line number and find it setting lineNumber
as false,
$(function(){
editormd.markdownToHTML("editormd-view", {
htmlDecode : "style,script,iframe", // you can filter tags decode
lineNumbers : false,
});
});
However, it did not take effect,
I traverse through the source code editormd.js
all day long to comment out keywords "linenums" , "linen" etc, but still not solve the problem.
The source file is markdown without line numbers.
Does anyone encounter such a problem with this editor?