# File lib/asciidoctor/substitutors.rb, line 1277
  def unescape_brackets str
    # FIXME make \] a regex
    str.empty? ? '' : str.gsub('\]', ']')
  end