Plain text + shorthand notation
Read Write Note
A no-frills notepad-style app that's designed to do one thing really well: write HTML without getting a headache.

Ever wish for a cleaner way to write this —
<figure class="container" id="fig1">
<img src="/img/crazy-cool.png" />
<figcaption>A Crazy/Cool language</figcaption>
</figure>
Here's the same thing,
using BLUEPHRASE shorthand notation —
figure .container #fig1 {
img `/img/crazy-cool.png`
figcaption A Crazy/Cool language
}
RWNOTE = Plain text + shorthand notation
