This repository has been archived on 2024-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
mindcap/README.html
2022-04-07 22:03:26 +01:00

44 lines
1,022 B
HTML

<h2>mindcap</h2>
<p>(mind)storm (cap)ture is a minimal note taking application.
</p>
<p>It isn't visual but entirely text based.
</p>
<h2>Usage</h2>
<p>Running mindcap without a file will result in crashes when attempting to (w)rite.
</p>
<p>(r)ead - outputs the notes in memory
</p>
<p>(a)ppend - takes an input and adds it to notes in memory
</p>
<p>(d)elete - takes a number input and deletes it from the notes in memory
</p>
<p>(w)rite - writes the notes in memory to disk
</p>
<p>(q)uit - self-explanatory.
</p>
<p>When (d)eleting, the number you use will be the note number.
</p>
<p>`</p>
<p>note 1</p>
<p>note 2</p>
<p>note 3</p>
<p>`
</p>
<p>To delete the second note you input 2, not 1.
</p>
<p>You then end up with
</p>
<p>`</p>
<p>note 1</p>
<p>note 3</p>
<p>`
</p>
<h2>How are my notes stored?</h2>
<p>Stored in a plaintext document of the name you stored.
</p>
<p>They'll be stored in a format similar to this:
</p>
<p>`</p>
<p>Welcome to mindcap!|~##~|This is a note!|~##~|This is also a note!</p>
<p>`
</p>