summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorNoel Peden <[email protected]>2012-07-27 07:23:45 -0700
committerNoel Peden <[email protected]>2012-07-27 07:23:45 -0700
commite6a599956ed48dfb34516957777e0a4c52f0b36e (patch)
treea0039a29d18d2e5d7f073e77b02d683adad59186 /README.md
parent32744f03415e38aa954146ad18a95a16f01c3f0e (diff)
downloadcaxlsx-e6a599956ed48dfb34516957777e0a4c52f0b36e.tar.gz
caxlsx-e6a599956ed48dfb34516957777e0a4c52f0b36e.zip
Ruby format fix for README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 4 insertions, 6 deletions
diff --git a/README.md b/README.md
index 633dc20f..6f146144 100644
--- a/README.md
+++ b/README.md
@@ -29,13 +29,11 @@ Axlsx: Office Open XML Spreadsheet Generation
If you are working in rails, or with active record see:
* http://github.com/randym/acts_as_xlsx
-acts_as_xlsx is a simple ActiveRecord mixin that lets you do stuff like
-'''ruby
+acts_as_xlsx is a simple ActiveRecord mixin that lets you generate a workbook with:
-Posts.where(created_at > Time.now-30.days).to_xlsx
-
-'''
-To automatically generate a workbook
+ ```ruby
+ Posts.where(created_at > Time.now-30.days).to_xlsx
+ ```
** and **