summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRandy Morgan (@morgan_randy) <[email protected]>2012-07-27 21:21:19 -0700
committerRandy Morgan (@morgan_randy) <[email protected]>2012-07-27 21:21:19 -0700
commita4067c3301aea5470c636d206034e4e787196df6 (patch)
treea0039a29d18d2e5d7f073e77b02d683adad59186
parent32744f03415e38aa954146ad18a95a16f01c3f0e (diff)
parente6a599956ed48dfb34516957777e0a4c52f0b36e (diff)
downloadcaxlsx-a4067c3301aea5470c636d206034e4e787196df6.tar.gz
caxlsx-a4067c3301aea5470c636d206034e4e787196df6.zip
Merge pull request #116 from straydogstudio/master
Quick format fix for the README.
-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 **