Skip to content

Commit

Permalink
Update Upskirt version
Browse files Browse the repository at this point in the history
"Use <del> tag for strikethrough"
  • Loading branch information
vmg committed Apr 18, 2011
1 parent c4a48ac commit 12035ab
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions ext/xhtml.c
Expand Up @@ -170,9 +170,9 @@ rndr_double_emphasis(struct buf *ob, struct buf *text, char c, void *opaque)
return 0;

if (c == '~') {
BUFPUTSL(ob, "<span style=\"text-decoration:line-through;\">");
BUFPUTSL(ob, "<del>");
bufput(ob, text->data, text->size);
BUFPUTSL(ob, "</span>");
BUFPUTSL(ob, "</del>");
} else {
BUFPUTSL(ob, "<strong>");
bufput(ob, text->data, text->size);
Expand Down
2 changes: 1 addition & 1 deletion lib/redcarpet.rb
Expand Up @@ -26,7 +26,7 @@
# end
#
class Redcarpet
VERSION = '1.8.1'
VERSION = '1.8.2'

# Original Markdown formatted text.
attr_reader :text
Expand Down
4 changes: 2 additions & 2 deletions redcarpet.gemspec
@@ -1,9 +1,9 @@
Gem::Specification.new do |s|
s.name = 'redcarpet'
s.version = '1.8.1'
s.version = '1.8.2'
s.summary = "Ruby bindings for libupskirt"
s.description = 'A fast and safe Markdown to (X)HTML parser'
s.date = '2011-04-17'
s.date = '2011-04-18'
s.email = 'vicent@github.com'
s.homepage = 'http://github.com/tanoku/redcarpet'
s.has_rdoc = true
Expand Down
2 changes: 1 addition & 1 deletion upskirt
Submodule upskirt updated from 0059d6 to 8bbc29

0 comments on commit 12035ab

Please sign in to comment.