There are two things that I find cumbersome about writing WordPress posts by hand:
- Making HTML links
- Making lists
Before we had this blog, we had a UseMod wiki, and the wiki syntax for typing these things was really easy. I made a WordPress plugin that lets you use UseMod syntax in your blog posts.
The plugin is free and licensed under the GPL. Download it here! You can also view the source code here.
To install, just copy the tikiwikiformatting.php file into your wp/wp-content/plugins/ directory.
Here is how to use it:
To make an HTML link, type this:
[nocode]
The TikiRobot Blog!
[/nocode]
It will look like this: The TikiRobot Blog!
To make an unordered list, type this:
[nocode]
- item A
- item B
- subitem
- subitem
- item C
It will look like this:
- item A
- item B
- subitem
- subitem
- item C
To make an ordered list, type this:
[nocode]
- one
- onePointOne
- onePointTwo
- two
- three
It will look like this:
- one
- onePointOne
- onePointTwo
- two
- three
emre 6:28 am on March 21, 2007 Permalink | Log in to Reply
Nice! I hope you will add a richer feature set over time.
Reuben 8:08 am on May 1, 2007 Permalink | Log in to Reply
How do I escape a “#”? I tried \#, but that showed up as “\#”.
rajbot 8:29 am on May 1, 2007 Permalink | Log in to Reply
If a # occurs in the middle of a line, you don’t need to escape it.
If a # occurs at the start of a line, precede it with a space. Typing ” #” will make it show up as just “#” in your browser.
Preceded by a space:
# x
# y
Not preceded by a space: