Skip to content

Commit

Permalink
Added c1 paragraph type back in.
Browse files Browse the repository at this point in the history
  • Loading branch information
Russ Olsen committed Mar 12, 2012
1 parent c48da42 commit 067f74b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -6,7 +6,7 @@ task :default => [ :spec, :gem ]

gem_spec = Gem::Specification.new do |s|
s.name = "notroff"
s.version = "0.2.10"
s.version = "0.2.11"
s.authors = ["Russ Olsen"]
s.date = %q{2012-01-15}
s.description = 'NotRoff A simple text to openoffice filter'
Expand Down
2 changes: 1 addition & 1 deletion lib/notroff/type_assigner.rb
Expand Up @@ -8,7 +8,7 @@ def process( paragraphs )
type = paragraph[:type]
if (type == :body) or (type == :code) or (type == :quote)
current_type = type
elsif type == :code1
elsif type == :c1 || type == :code1
paragraph[:type] = :code
processed_paragraphs << paragraph
elsif type == :text
Expand Down

0 comments on commit 067f74b

Please sign in to comment.