Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jakubvalenta/tomboy-to-orgmode
Convert Tomboy notes to an Emacs Org-mode file
https://github.com/jakubvalenta/tomboy-to-orgmode
emacs notes orgmode tomboy
Last synced: 23 days ago
JSON representation
Convert Tomboy notes to an Emacs Org-mode file
- Host: GitHub
- URL: https://github.com/jakubvalenta/tomboy-to-orgmode
- Owner: jakubvalenta
- License: apache-2.0
- Created: 2017-05-14T13:49:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-09-17T17:46:50.000Z (over 3 years ago)
- Last Synced: 2024-07-30T19:47:02.291Z (5 months ago)
- Topics: emacs, notes, orgmode, tomboy
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tomboy to Org-mode
Convert Tomboy notes to an Emacs Org-mode file.
## Installation
``` shell
$ pip install --user .
```The main executable will then be available globally:
``` shell
$ tomboy-to-orgmode --help
```## Usage
`tomboy-to-orgmode` takes one positional argument -- the input directory
containing the Tomboy notes (it will be searched recursively).The resulting org-mode file will be written to standard output.
Example:
``` shell
$ tomboy-to-orgmode ~/.local/share/tomboy > notes.org
```You can try the script with the test data included in this repository:
``` shell
$ tomboy-to-orgmode tomboy_to_orgmode/tests/test_data
```## Help
``` shell
$ tomboy-to-orgmode --help
```## Development
### Installation
``` shell
make setup-dev
```### Testing and linting
``` shell
make test
make lint
```### Help
``` shell
make help
```## Contributing
__Feel free to remix this project__ under the terms of the [Apache License,
Version 2.0](http://www.apache.org/licenses/LICENSE-2.0).