class ReverseAsciidoctor::Cleaner

Public Instance Methods

clean_punctuation_characters(string) click to toggle source
# File lib/reverse_asciidoctor/cleaner.rb, line 63
def clean_punctuation_characters(string)
  string.gsub(/(\*\*|~~|__)\s([\.!\?'"])/, "\\1".strip + "\\2")
end
clean_tag_borders(string) click to toggle source

Find non-asterisk content that is enclosed by two or more asterisks. Ensure that only one whitespace occurs in the border area. Same for underscores and brackets.

# File lib/reverse_asciidoctor/cleaner.rb, line 37
def clean_tag_borders(string)
  result = string.gsub(/\s?\*{2,}.*?\*{2,}\s?/) do |match|
    preserve_border_whitespaces(match, default_border: ReverseAsciidoctor.config.tag_border) do
      match.strip.sub('** ', '**').sub(' **', '**')
    end
  end

  result = result.gsub(/\s?\_{2,}.*?\_{2,}\s?/) do |match|
    preserve_border_whitespaces(match, default_border: ReverseAsciidoctor.config.tag_border) do
      match.strip.sub('__ ', '__').sub(' __', '__')
    end
  end

  result = result.gsub(/\s?~{2,}.*?~{2,}\s?/) do |match|
    preserve_border_whitespaces(match, default_border: ReverseAsciidoctor.config.tag_border) do
      match.strip.sub('~~ ', '~~').sub(' ~~', '~~')
    end
  end

  result.gsub(/\s?\[.*?\]\s?/) do |match|
    preserve_border_whitespaces(match) do
      match.strip.sub('[ ', '[').sub(' ]', ']')
    end
  end
end
remove_inner_whitespaces(string) click to toggle source
# File lib/reverse_asciidoctor/cleaner.rb, line 20
def remove_inner_whitespaces(string)
  unless string.nil?
    string.gsub!(/\n stem:\[/, "\nstem:[")
    string.gsub!(/(stem:\[([^\]]|\\\])*\])\n(?=\S)/, "\\1 ")
    string.gsub!(/(stem:\[([^\]]|\\\])*\])\s+(?=[\^-])/, "\\1")
  end
  string.each_line.inject("") do |memo, line|
    memo + preserve_border_whitespaces(line) do
      line.strip.gsub(/[ \t]{2,}/, ' ')
    end
  end
end
remove_leading_newlines(string) click to toggle source
# File lib/reverse_asciidoctor/cleaner.rb, line 16
def remove_leading_newlines(string)
  string.gsub(/\A\n+/, '')
end
remove_newlines(string) click to toggle source
# File lib/reverse_asciidoctor/cleaner.rb, line 12
def remove_newlines(string)
  string.gsub(/\n{3,}/, "\n\n")
end
tidy(string) click to toggle source
# File lib/reverse_asciidoctor/cleaner.rb, line 4
def tidy(string)
  result = remove_inner_whitespaces(string)
  result = remove_newlines(result)
  result = remove_leading_newlines(result)
  result = clean_tag_borders(result)
  clean_punctuation_characters(result)
end

Private Instance Methods

present_or_default(string, default) click to toggle source
# File lib/reverse_asciidoctor/cleaner.rb, line 81
def present_or_default(string, default)
  if string.nil? || string.empty?
    default
  else
    string
  end
end
preserve_border_whitespaces(string, options = {}) { || ... } click to toggle source
# File lib/reverse_asciidoctor/cleaner.rb, line 69
def preserve_border_whitespaces(string, options = {}, &block)
  return string if string =~ /\A\s*\Z/
  default_border = options.fetch(:default_border, '')
  # If the string contains part of a link so the characters [,],(,)
  # then don't add any extra spaces
  default_border = '' if string =~ /[\[\(\]\)]/
  string_start   = present_or_default(string[/\A\s*/], default_border)
  string_end     = present_or_default(string[/\s*\Z/], default_border)
  result         = yield
  string_start + result + string_end
end