Florby is a static site generator that converts Markdown files to HTML. It's specifically designed for Digital Gardens.
- Markdown to HTML conversion
- Wiki-link notation support
- Automatic sitemap generation
- File change watching functionality
- Development server
$ gem install florby
Or add to your Gemfile:
gem 'florby'
And then execute:
$ bundle install
To generate HTML files from Markdown:
$ florby build
To start the development server:
$ florby server
To start the development server with file watching (auto rebuild):
$ florby server --watch
To watch for file changes and automatically rebuild:
$ florby watch
You can create a config.rb
file in your project root as a configuration file.
host 'https://ukstudio.jp'
copy_from '/assets'
copy_from 'robots.txt'
copy_from 'CNAME'
See the LICENSE file.