mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
Fix typo in README.md
Fix typo in filter code example.
This commit is contained in:
parent
053288f2fe
commit
a7e0e34d9b
|
@ -244,7 +244,7 @@ Alternately, if you'd just like to do everything yourself, you can specify a fil
|
||||||
var demo = function(converter) {
|
var demo = function(converter) {
|
||||||
return [
|
return [
|
||||||
// Replace escaped @ symbols
|
// Replace escaped @ symbols
|
||||||
{ type: 'lang', function(text) {
|
{ type: 'lang', filter: function(text) {
|
||||||
return text.replace(/\\@/g, '@');
|
return text.replace(/\\@/g, '@');
|
||||||
}}
|
}}
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue
Block a user