MarkItUp HTML set for wordpress
This plugin will transform your quite boring textarea into a attractive textarea where your visitors are not limited to type only text, but add some markup onto it. How ? Well, Markitup is a universal markup jQuery editor, whichs hooks on each textarea on your website or just to a specific textarea specified by you and transforms the whole area, and you are ready to go! Lots of credits to the creator of this wonderful MarkItUp!
This plugin is based on the HTML set of Markitup which includes the following markups:
- H1, H2, H3, H4, H5, H6
- Paragraph
- Bold
- Italic
- Strike through
- Ordered list, Unordered list and list items
- Insert picture
- Insert link
How do i make this work ?
Well, thats quite easy!
Just download this plugin, go to the plugins area within WP admin, choose “Add new”, choose “upload”, choose the zipped package, and choose “install”. Don’t forget to activate the plugin.
That’s all!
Dont change each textarea!
This Markitup plugin hooks on each single textarea on your website. This means even the textarea’s you dont want to hook on.
It’s possible to change this but you have to change a little piece of code….
Within the plugin directory, there is a php file named “MarkItUp.php“. This file contains a function named “MarkItUpFilesFooter“.
It looks like this:
<?php
function MarkItUpFilesFooter()
{
?>
<script type="text/javascript">
<!--
$(document).ready(function() {
$('textarea').markItUp(mySettings);
});
-->
</script>
<?php
}
?>
You can specify a specific textarea, the only thing you have to do, is change “$(‘textarea’)” into the id of your textarea. So if your textarea has the id comment (id=”comment”) you have to change it accordingly as shown below.
<?php
function MarkItUpFilesFooter()
{
?>
<script type="text/javascript">
<!--
$(document).ready(function() {
$('#comment').markItUp(mySettings);
});
-->
</script>
<?php
}
?>
All css files can be changed to your own dreams! Probably you have to! You can edit them through FTP or just the plugin editor within the WP admin area!
Do not put style modifications into the existing css files. Plugin updates will overwrite your changes. Modifications must be saved in another css file.
Version 1.0.1:
- Added: Blockquote tag
For more information about other markitup sets or customized markup sets, please visit the official Markitup is a universal markup jQuery editor website
Markitup official website
You want to see how it works ? Just use the comments below!
MarkItUp HTML set for wordpress,
Home › Forums › MarkItUp HTML set for wordpress
Tagged: HTML, markitup, markup, markup editor, Wordpress, Wordpress comments, Wordpress plugin
This topic contains 1 reply, has 4 voices, and was last updated by
MrXHellboy 6 months ago.
You must be logged in to reply to this topic.