Closed roipoussiere closed 5 years ago
Can you reach out to the bootstrap-markdown community?
Finally found it.
In editor.html, we can define bootstrap-markdown parameters with html data attribute when the text-area is created, like this:
{{form.text(placeholder="Blog text", required="", data_provide="markdown", data_resize="both", rows="16")}}
Bootstrap-markdown gives many options to provide in order to customize it, such as
autofocus
,savable
,resize
, etc.The documentation says:
But in editor.html template, there is only
{{form.text(placeholder="Blog text", required="", data_provide="markdown", rows="16")}}
, without the suggested Javascript code.So I don't really know how to change bootstrap-markdown parameters, any idea?