We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0b5466 commit e787d16Copy full SHA for e787d16
README.mdown
@@ -212,6 +212,16 @@ Also you can use Handlebars template in your markdown files:
212
Current version: {{ ctx.version }}
213
```
214
215
+#### Parser override
216
+
217
+If you want to use another markdown parser you can override the parsing function:
218
219
+```javascript
220
+parsingFunction: function(markdownText): {
221
+ return myParser.markdownToHtml(markdownText);
222
+}
223
+```
224
225
## Examples
226
227
For a live example check: [MOUT documentation](http://moutjs.com/docs/latest/)
0 commit comments