From 32bda708fa4ca25f8f2f58a987e985a4188e360d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Pi=C4=8Dman?= Date: Tue, 14 Apr 2015 12:57:30 +0200 Subject: [PATCH] Code snippets style --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7811abec..fdadd11c 100644 --- a/README.md +++ b/README.md @@ -180,12 +180,16 @@ Before installing ensure that the Redmine instance is stopped. * invalid=replace => to perform document title invalid characters replacement for '-' Example: - ```rake redmine:dmsf_convert_documents project=test RAILS_ENV="production"``` + ``` + rake redmine:dmsf_convert_documents project=test RAILS_ENV="production" + ``` b) To alert all users who are expected to do an approval in the current approval steps Example: - ```rake redmine:dmsf_alert_approvals RAILS_ENV="production"``` + ``` + rake redmine:dmsf_alert_approvals RAILS_ENV="production" + ``` ### Fulltext search (optional) If you want to use fulltext search features, you must setup file content indexing. @@ -199,7 +203,9 @@ This command must be run on regular basis (e.g. from cron) Example of cron job (once per hour at 8th minute): - ```8 * * * * root /usr/bin/ruby redmine_dmsf/extra/xapian_indexer.rb -f``` + ``` + 8 * * * * root /usr/bin/ruby redmine_dmsf/extra/xapian_indexer.rb -f + ``` See redmine_dmsf/extra/xapian_indexer.rb for help.