README.md in almanac-0.9.1 vs README.md in almanac-0.9.2
- old
+ new
@@ -1,11 +1,11 @@
# Almanac
Almanac is the most elegant mountable blog engine that can be easily hooked up in the existing Rails application. You can read more about it in [this blog post](http://www.vasinov.com/blog/beautifully-simple-blogging).
## Main Features
- Slick default design that can be easily customized.
-- Markdown for everything.
+- kramdown (better Markdown) for all input fields.
- Drafts that make sense.
- Easy Google Analytics support.
- Disqus support for comments.
- Built-in social sharing with Facebook and Twitter.
- RSS support.
@@ -69,10 +69,22 @@
```ruby
Almanac.user_class = "User" # other possibilities: "Author", "Writer", etc.
```
+## Kramdown
+[Kramdown](http://kramdown.rubyforge.org/index.html) is the superset of Markdown. All input fields can use it. Check out all [syntax rules](http://kramdown.rubyforge.org/syntax.html) for kramdown. One of the best examples of kramdown usage is code highlighting that is part of Almanac. In your post you can simply write:
+
+```
+~~~ruby
+def foo
+ puts "bar"
+end
+```
+
+And it will generate a nice looking block of Ruby code once your post is published.
+
## Post Comments
Almanac supports commenting via [Disqus](http://disqus.com/)—the best commenting solution on the web. If you want your blog to support commenting, register with Disqus, add a website and copy-paste "Site Shortname" to the appropriate field in Blog Settings.
Prior to version 0.9 Almanac had it's own commenting solution. It's not supported anymore. However, you can back up your comments from the database, since there is no migration that removes the comments table in the system.
@@ -93,6 +105,6 @@
## Contribute
- Fork the project.
- Write code for a feature or bug fix.
- Add Rspec tests for it.
- Commit, do not make changes to rakefile or version.
-- Submit a pull request.
\ No newline at end of file
+- Submit a pull request.