├── .gitattributes ├── LICENSE ├── README.md └── docs └── index.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Mohammad Rahmani 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Mehregan 2 | **Mehregan** is a Tiddlywiki based app for **personal knowledge management** with Zettelkasten concept. 3 | 4 | # Features 5 | * Easy note taking and create cluster of connected information 6 | * Node explorer 7 | * links: bidirectional link to all other information blocks (tiddlers: any chunk of meaningful information) 8 | * backlinks: bidirectional link to all information block cite or use the current block 9 | * tags and tagging: bidirectional link to all information block tagged with current block of information 10 | * Todo and task lists 11 | * Comment blocks (make comment to other block of information) 12 | * Interstitial journaling 13 | * Category tabs for creating idea, source, people, question, ... 14 | 15 | 16 | **Mehregan** is a standalone [Tiddlywiki](https://tiddlywiki.com) app and acts as a single html file and can be used offline on a USB thumb drive with any modern browser. 17 | 18 | **Mehregan** implements a knowledge management system using Zettelkasten concept and is highly hackable to be shpaed based on your taste and needs. 19 | 20 | 21 | ## Demo and code 22 | * Demo: https://kookma.github.io/TWE-Mehregan/ 23 | * Code: https://github.com/kookma/TWE-Mehregan 24 | 25 | Star it if you like it! 26 | 27 | ## Copyright 28 | Mehregan app content copyright © 2021 Mohammad Rahmani. The TiddlyWiki core and the plugins found in this app belong to their respective owners and are used under license. 29 | 30 | 31 | ## Note 32 | Mehregān (Persian: مهرگان‎ or Jašn-e Mehr جشن مهر Mithra Festival) is a Zoroastrian and Persian festival celebrated to honor the yazata Mithra (Persian: Mehr), which is responsible for friendship, affection and love. It is also widely referred to as the Persian Festival of Autumn. (From [Wikipedia](https://en.wikipedia.org/wiki/Mehregan) ) --------------------------------------------------------------------------------