Improve formatting - bookmarks.sh - Simple bookmark manager
 (HTM) hg clone https://bitbucket.org/iamleot/bookmarks.sh
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) changeset 4207926976cb05970685361a01b6c65622dece01
 (DIR) parent b9d9313faba00977897d31c6bdb27174f1f444cd
 (HTM) Author: Leonardo Taccari <iamleot@gmail.com>
       Date:   Wed, 19 Sep 2018 17:36:38 
       
       Improve formatting
       
       Diffstat:
        README |  44 ++++++++++++++++++++++----------------------
        1 files changed, 22 insertions(+), 22 deletions(-)
       ---
       diff -r b9d9313faba0 -r 4207926976cb README
       --- a/README    Sat Aug 18 11:16:46 2018 +0200
       +++ b/README    Wed Sep 19 17:36:38 2018 +0200
       @@ -5,44 +5,44 @@
        
         - id
         - URL
       - - tags `@tag' comma separated, e.g.: @tag0,@tag1,...,@tagn
       + - tags `@tag` comma separated, e.g.: @tag0,@tag1,...,@tagn
         - comment
        
        Invoking bookmarks without any arguments prints out usage information, e.g.:
        
       - % bookmarks
       - usage: bookmarks command ...
       -     bookmarks add id url [tags [comment]]
       -     bookmarks delete id
       -     bookmarks list
       -     bookmarks search id|url|tag
       +    % bookmarks
       +    usage: bookmarks command ...
       +        bookmarks add id url [tags [comment]]
       +        bookmarks delete id
       +        bookmarks list
       +        bookmarks search id|url|tag
        
       -To add a bookmark, e.g. `example':
       +To add a bookmark, e.g. `example`:
        
       - % bookmarks add example http://www.example.org/ @example 'Example Domain'
       +    % bookmarks add example http://www.example.org/ @example 'Example Domain'
        
       -To delete a bookmark, e.g. `example':
       +To delete a bookmark, e.g. `example`:
        
       - % bookmarks delete example
       +    % bookmarks delete example
        
        To list all bookmarks:
        
       - % bookmarks list
       - example       http://www.example.org/ @example        Example Domain
       +    % bookmarks list
       +    example    http://www.example.org/ @example        Example Domain
        
        To search a bookmark:
        
       - % bookmarks search example                    # via id
       - example       http://www.example.org/ @example        Example Domain
       +    % bookmarks search example                 # via id
       +    example    http://www.example.org/ @example        Example Domain
        
       - % bookmarks search http://www.example.org/    # via URL
       - example       http://www.example.org/ @example        Example Domain
       +    % bookmarks search http://www.example.org/ # via URL
       +    example    http://www.example.org/ @example        Example Domain
        
       - % bookmarks search @example                   # via tag
       - example       http://www.example.org/ @example        Example Domain
       +    % bookmarks search @example                        # via tag
       +    example    http://www.example.org/ @example        Example Domain
        
       -This format can also be used by `surfraw'. For more information about that
       -please give a look to the `Bookmarks' section of the surfraw(1) man page.
       +This format can also be used by `surfraw`. For more information about that
       +please give a look to the `Bookmarks` section of the surfraw(1) man page.
        
       -bookmarks needs a sed(1) implementation that supports the `-i' non-standard
       +bookmarks needs a sed(1) implementation that supports the `-i` non-standard
        option.