Project

touch_up

0.0
No commit activity in last 3 years
No release in over 3 years
Provides italics, strikes, bold, and links. Nothing else.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
~> 1.5
~> 0.9

Runtime

 Project Readme

Touch_Up

My mini-alternative to markdown. It uses Regexp (I know, I know) and is most likely useless for your needs.

Most likely, I will stop using this and just use RedCarpet.

That is what you should do: don't use this. Use RedCarpet.

Installation

gem 'touch_up'

Usage

require 'touch_up'

puts Touch_Up.new(<<-EOF).to_html
  This is /slanted/.
  This is *strong*.
  This is ~~strike~~.
  This is *my link* www.megauni.com.
  This is lovefm.co.jp.
EOF