Metadata-Version: 2.1
Name: nort
Version: 0.2.0
Summary: A tool for creating and managing notes
Home-page: https://github.com/taDachs/nort
Author: Max Schik
Author-email: max.schik@googlemail.com
License: MIT
Description: # Nort (WIP)
        
        ## What do I actually want?
        - generate entries automatically
        - grepable
        - automatically copy undone tasks from yesterday into today
        
        ## installation
        - `pip3 install nort`
        
        ## Commands
        - [x] `nort new test --tags tag1 tag2 tag3` generates note called test with tags tag1, tag2 and tag3
        - [ ] `nort search` TODO
        - [x] `nort view [name]` opens note in viewer, specified in settings
        - [x] `nort list` lists all notes
        - [x] `nort list --tags tag1` lists notes that have tag1
        
        ## Options
        Options can be configured in the `~/.nort.yaml` file (or `~/.config/nort/nort.yaml`)
        - `viewer`: which viewer gets used by `nort view`
        - `editor`: which editor gets used by `nort new` and `nort edit`
        - `nort_path`: where to save the notes
        
        ## How to store meta info
        - books can be own folders, or just tags
          - like notable: `Notebooks/peter/` corresponds to a notebook called peter
        - `---` signifies start and end of metadata
        - inside `---` yaml is used
        
        ```markdown
        ---
        tags: [Notebooks/Work/protocols/2021/April, Todo]
        title: Work on 16.04.2021
        ---
        ```
        
        ## Template File
        
        ## TODO
        - [x] implement nort new
        - [x] implement nort list
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
