20 lines
491 B
Ruby
Executable File
20 lines
491 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
# A sanity check to ensure that gem is functional after installing the package.
|
|
|
|
require 'asciidoctor'
|
|
|
|
source = <<EOS
|
|
= Asciidoctor
|
|
Author Name <author@example.com>
|
|
|
|
http://asciidoctor.org[Asciidoctor] is an _open source_ implementation of
|
|
http://asciidoc.org[AsciiDoc] in [.red]*Ruby*.
|
|
|
|
== Sample section
|
|
|
|
Sample section content
|
|
EOS
|
|
|
|
puts Asciidoctor.render(source, :backend => :html5, :header_footer => true, :safe => :safe, :attributes => 'idprefix= idseparator=-')
|