aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2024-04-24 15:42:42 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2024-04-25 11:33:30 +0200
commitcee32353f324b30014a8d2db68f588c8d4b6e76f (patch)
tree5aa8dcddbd7c502528fef5543ae9d764fccaca79
parent11fe339cc3bfa8836cb7c394f63afbaf933a9a41 (diff)
downloadhyde-cee32353f324b30014a8d2db68f588c8d4b6e76f.tar.gz
hyde-cee32353f324b30014a8d2db68f588c8d4b6e76f.zip
Call render in main method
-rwxr-xr-xhyde.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/hyde.rb b/hyde.rb
index c2bb412..994047a 100755
--- a/hyde.rb
+++ b/hyde.rb
@@ -45,6 +45,7 @@ class Hyde
# Parse arguments from the CLI
options = HydeOptionParser.parse
page = Page.new(options[:fileName], nil, options[:baseHref])
+ page.render
end
end