File | Date | Author | Commit |
---|---|---|---|
.github | 2024-07-21 |
![]() |
[02b2a5] Release 0.3.3 |
default-config | 2024-07-08 |
![]() |
[89b2e8] CSS is now created if not present before |
readme-images | 2024-06-29 |
![]() |
[79474c] Updated workflows, readme images |
src | 2024-07-21 |
![]() |
[0384ed] Clearly marked unused variables on windows pwd |
tests | 2024-06-28 |
![]() |
[c6ff34] Added code syntax highlighting |
wix | 2024-07-21 |
![]() |
[e9a556] Release 0.3.2 |
.gitignore | 2024-05-18 |
![]() |
[26236b] Updated gitignor to ignore hmtl |
CHANGELOG.md | 2024-07-21 |
![]() |
[02b2a5] Release 0.3.3 |
Cargo.toml | 2024-07-21 |
![]() |
[02b2a5] Release 0.3.3 |
LICENSE | 2024-05-27 |
![]() |
[2bdcb4] Updated Licenes information |
README.md | 2024-07-22 |
![]() |
[f60ce5] Improved wording in installation section |
Terminal-based markdown note manager to view statistics, explore connections and launch editing and viewing applications.
In the select & overview screen:
Viewing a single note:
A default light theme is also included.
[!TIP]
Default themes will adjust to your terminal colors, but the entire style can be fully customized.
Rucolas is made for users of a zettelkasten-style note system of interlinked markdown notes that want to do most of their note taking directly from within the terminal.
Compared to UI-note taking tools such as Obsidian, Evernote or Notion ...
- rucola is much more light-weight, using no GUI, no web interface, no Electron, making it faster to open and more responsive to use, particularly on older hardware. Note that viewing your notes as HTML still requires a browser or other HTML viewer.
- rucola provides easy access to edit notes in your favorite terminal text editor such as vim, emacs or helix, thus allowing a far more powerful editing interface. Although Obsidian provides vim keybindings via plugins, rucola allows you to edit in exactly the editing environment you are used to with all your vim plugins and other comfort settings ready to go.
- rucola currently offers less extensibility and thus probably also less powerful statistics, in particular no graph view.
- rucola relies on an external program to view HTML versions of your markdown notes, allowing once again more customizability (for example with the rich plugin system of browsers like firefox or chrome) as well as more conformity to your usual workflow.
- rucola is not a single all-in-one application but works as a note browser that also glues an HTML viewer to an editor.
Compared to using only a terminal text editor (such as vim, emacs or helix) to manage markdown notes ...
- rucola allows more note-specific interaction with your file system, such as following wiki links.
- rucola provides note-specific statistics about your files, such as tags, nested tags and links statistics.
- rucola facilitates more note-specific filtering and searching options based on links, tags, full text or titles.
- rucola automatically renames wiki links on file rename, which the marksman language server currently does not support, making such a feature unavailable in helix and any other editor relying on LSP for markdown editing.
- rucola allows you to view nicer-to-read HTML versions of your documents, complete with automatic background conversion (when enabled), which is especially useful for code that is difficult to read in the raw format. In particular, rucola compiles LaTeX and highlights code blocks.
- rucola requires the usage of multiple programs in parallel instead of just your editor.
[!TIP]
Most text editors or terminal emulators provide some way to open a file in an already running instance - open rucola and your favourite editor next to one another and use rucola like a more note-specific file picker.
The current version supports all features originally envisioned for this project and has been tested in daily use for some months.
This does not mean that development is finished.
Future plans include:
- Frequent & quick bugfixes and similar non-breaking changes.
- Incorporate user feedback into new features without losing sight of the original scope to also make rucola integrate into your workflow.
- As development on the underlying markdown parser comrak continues, especially support for wikilinks, certain internal algorithms can be made more safe & efficient (especially link updating on name changes).
This is dependent on the progress on comrak.
- As development on the ratatui markdown reader continues, a possible future option would be to allow viewing of markdown files right within rucola.
This is dependent on the progress on ratatui-markdown.
For installation instructions via shell script, .msi
or tarball, see the latest release.
These installers are generated using cargo dist
and are provided for Windows, Mac and Linux.
Install rucola
from the Arch User Repository:
pacman -S rucola-notes
Install with an AUR helper such as yay
:
yay rucola
Install using cargo
from crates.io
:
cargo install rucola-notes
If you want to build the latest commit of rucola by yourself, you can clone the repository, build & install:
git clone https://github.com/Linus-Mussmaecher/rucola
cd rucola
cargo install --path .
Rucola can be launched from your command line with the rucola
command.
[!TIP]
For more information on possible configuration options, features and usage tips, see the GitHub Wiki.
Rucola is implemented using the ratatui framework in Rust. Markdown parsing is done via comrak.
LaTeX compilation & macro system is facilitated by KaTeX while code highlighting is done with highlight.js.
Rucola is released under the GNU General Public License v3.
Copyright (C) 2024 Linus Mußmächer linus.mussmaecher@gmail.com
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.