aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2014-06-23 16:05:32 +0200
committerMatěj Cepl <mcepl@redhat.com>2014-06-23 16:06:56 +0200
commitce5cd570836985b91e415adc088afc707df41182 (patch)
tree812ab1a995272e1a37d4dc094126204abaf8403b
parentc53b2bf00cbaf5f4cedb5ac00948447d7f7e290b (diff)
downloadcucutags-ce5cd570836985b91e415adc088afc707df41182.tar.gz
Fix README to be correct reStructuredText.0.7.2
-rw-r--r--README25
-rwxr-xr-xcucutags.py2
2 files changed, 21 insertions, 6 deletions
diff --git a/README b/README
index 73bd5f4..277dacb 100644
--- a/README
+++ b/README
@@ -1,12 +1,27 @@
cucutags provides a simple generator of ctags-like tags file for
-the combination of [Gherkin language features](https://github.com/cucumber/cucumber/wiki/Gherkin) and Python [steps](https://github.com/behave/behave).
+the combination of `Gherkin language features`_ and Python
+steps_ .
+
+.. _`Gherkin language features`:
+ https://github.com/cucumber/cucumber/wiki/Gherkin
+.. _steps:
+ https://github.com/behave/behave
Unfortunately, no text editor known to me is able to use so generated
tags file. However, this script can be also used by any other Python
-script as a library, and thus for example [vim](http://www.vim.org) can
-use it via [vim-behave](https://gitorious.org/cucutags/vim-behave)
-plugin or [gedit](https://wiki.gnome.org/Apps/Gedit) via the
-[gedit_behave](https://gitorious.org/cucutags/gedit_behave) one.
+script as a library, and thus for example vim_ can use it via
+vim-behave_ plugin or gedit_ via the gedit_behave_ one.
+
+.. _vim:
+ http://www.vim.org
+.. _vim-behave:
+ https://gitorious.org/cucutags/vim-behave
+.. _gedit:
+ https://wiki.gnome.org/Apps/Gedit
+.. _gedit_behave:
+ https://gitorious.org/cucutags/gedit_behave
All bug reports and enhancement requests, please, send to the
email listed in the script file.
+
+.. vi:wrap:tw=0:ft=rst:
diff --git a/cucutags.py b/cucutags.py
index 9d96af1..6531fcf 100755
--- a/cucutags.py
+++ b/cucutags.py
@@ -31,7 +31,7 @@ logging.basicConfig(format='%(levelname)s:%(funcName)s:%(message)s',
import parse
__docformat__ = 'reStructuredText'
-__version__ = "0.7.1"
+__version__ = "0.7.2"
__author__ = u"Matěj Cepl <mcepl_at_redhat_dot_com>"