ML Raw HTML Plugin for WordPress

This plugin allows you to insert raw HTML and Javascript into your post without any tampering by the fiendish WordPress paragraph and line break inserter. It is based on shortcodes and avoids expensive and fragile parsing of the post content based on regular expressions, unlike other plugins with similar functionality.

Using the plugin

Content that should be passed through unchanged by WordPress should be contained in a ml_raw_html shortcode block. For example:

Regular post content here...

[ml_raw_html]
<script type="text/javascript">
function foo(bar) {
frobozz = 'a';
bat = bar;
}
</script>
[/ml_raw_html]

More post content...

Multiple raw blocks

If you have multiple ml_raw_html blocks on a page, there is a slight complication. Each block needs to have a different id attribute to allow the implementation to accurately select the correct block of text. For example:

Regular post content here...

[ml_raw_html id="1"]
<script type="text/javascript">
function foo(bar) {
frobozz = 'a';
bat = bar;
}
</script>
[/ml_raw_html]

More post content...

[ml_raw_html id="2"]
<script type="text/javascript">
function foo2(bar) {
return 5;
}
</script>
[/ml_raw_html]

The id values are arbitrary, so long as they are unique on the page.

The shortcode name “ml_raw_html” and the id attribute, if present, must be all lowercase, and there cannot be any extra whitespace inside the brackets.

There are no configuration options – just upload the plugin to your WordPress plugin directory and activate.

WordPress Plugin Directory page for the ML Raw HTML plugin

If you have any comments about this plugin, please make them on the release announcement post. Thanks!