How to deactivate Markdown support/parsing altogether?

Post Reply
franckfriends
Jr. Bludit
Posts: 6
Joined: Tue Mar 14, 2017 12:22 pm

Hi,

I want to be able to post full HTML code in both posts and pages but the Markdown engine outputs warning/errors when I try to do so.

Any option available for that particular case?

Thanks!
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

1) You can combine Mardown and HTML. Do you have an example of HTML that does not work?

2) You can deactivate the default Markdown editor at "Plugins" > "SimpleMDE" and install another editor or work without any editor.
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
User avatar
Torsten_Kelsch
Legend Bludit
Posts: 263
Joined: Thu Aug 27, 2015 10:24 pm
Location: Germany
Has thanked: 4 times
Been thanked: 2 times
Contact:

I found out that Markdown parsing does not work if you wrap HTML code around the Markdown stuff in SimpleMDE Editor, like:

Code: Select all

<section>
## Headline
Some text
</section>
So, HTML5 semantic coding ist not possible with SimpleMDE – the only way is to switch off the editor and work in pure HTML, I think.
Last edited by Torsten_Kelsch on Thu Jun 15, 2017 7:02 pm, edited 1 time in total.
On Error GoTo Bed
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

Yes, you cannot wrap HTML code around Markdown, but you can mix Markdown with HTML. For example:

Code: Select all

## Headline
Some text<br>
with a <span style="color:#ff0000">newline</span>.
So it depends what you will do.
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
Post Reply