Whoops, bad copy/replace job

This commit is contained in:
Eston Bond
2010-12-06 16:13:29 -08:00
parent 05f259cee8
commit 641605b9fa
5 changed files with 13 additions and 13 deletions
@@ -8,22 +8,22 @@
var ASCIIDoc = { var ASCIIDoc = {
'function-bold' : { 'function-bold' : {
search: /(^\n]+)([\n\s]*)/g, search: /(^[\n]+)([\n\s]*)/g,
replace: "*$1*$2" replace: "*$1*$2"
}, },
'function-italic' : { 'function-italic' : {
search: /(^\n]+)([\n\s]*)/g, search: /(^[\n]+)([\n\s]*)/g,
replace: "_$1_$2" replace: "_$1_$2"
}, },
'function-code' : { 'function-code' : {
search: /(^\n]+)([\n\s]*)/g, search: /(^[\n]+)([\n\s]*)/g,
replace: "+$1+$2" replace: "+$1+$2"
}, },
'function-ul' : { 'function-ul' : {
search: /(^\n]+)([\n\s]*)/g, search: /(^[\n]+)([\n\s]*)/g,
replace: "* $1$2" replace: "* $1$2"
}, },
@@ -32,7 +32,7 @@ var MarkDown = {
}, },
'function-code' : { 'function-code' : {
search: /(^\n]+)([\n\s]*)/g, search: /(^[\n]+)([\n\s]*)/g,
replace: "`$1`$2" replace: "`$1`$2"
}, },
@@ -6,17 +6,17 @@
var Pod = { var Pod = {
'function-bold' : { 'function-bold' : {
search: /(^\n]+)([\n\s]*)/g, search: /(^[\n]+)([\n\s]*)/g,
replace: "B<$1>$2" replace: "B<$1>$2"
}, },
'function-italic' : { 'function-italic' : {
search: /(^\n]+)([\n\s]*)/g, search: /(^[\n]+)([\n\s]*)/g,
replace: "I<$1>$2" replace: "I<$1>$2"
}, },
'function-code' : { 'function-code' : {
search: /(^\n]+)([\n\s]*)/g, search: /(^[\n]+)([\n\s]*)/g,
replace: "C<$1>$2" replace: "C<$1>$2"
}, },
@@ -22,11 +22,11 @@
var RDoc = { var RDoc = {
'function-bold' : { 'function-bold' : {
search: /(^\n]+)([\n\s]*)/g, search: /([^\n]+)([\n\s]*)/g,
replace: "((*$1*))$2" replace: "((*$1*))$2"
} }
'function-code' : { 'function-code' : {
search: /(^\n]+)([\n\s]*)/g, search: /([^\n]+)([\n\s]*)/g,
replace: "(({$1}))$2" replace: "(({$1}))$2"
}, },
@@ -6,12 +6,12 @@
var Textile = { var Textile = {
'function-bold' : { 'function-bold' : {
search: /(^\n]+)([\n\s]*)/g, search: /(^[\n]+)([\n\s]*)/g,
replace: "*$1*$2" replace: "*$1*$2"
}, },
'function-italic' : { 'function-italic' : {
search: /(^\n]+)([\n\s]*)/g, search: /(^[\n]+)([\n\s]*)/g,
replace: "_$1_$2" replace: "_$1_$2"
}, },
@@ -20,7 +20,7 @@ var Textile = {
}, },
'function-code' : { 'function-code' : {
search: /(^\n]+)([\n\s]*)/g, search: /(^[\n]+)([\n\s]*)/g,
replace: "<pre><code>$1</code></pre>$2" replace: "<pre><code>$1</code></pre>$2"
}, },