This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'outliner' | |
include Outliner | |
outline "This is my outline" do | |
s "This is a section" do | |
p "This is a paragraph" do | |
t "This is a topic in the paragraph" | |
end | |
p "This is a paragraph without topics" | |
end |