Introducing
The Slant team built an AI & it’s awesome
Find the best product instantly
Add to Chrome
Add to Edge
Add to Firefox
Add to Opera
Add to Brave
Add to Safari
Try it now
4.7 star rating
0
What is the best alternative to LibreOffice Writer?
Ad
Ad
Supernotes
All
5
Experiences
Pros
3
Cons
1
Specs
Top
Pro
Short-form note-cards
The note-card format is incredibly versatile, and great when you have lots of information.
See More
Top
Con
Only web apps for now
The developers haven't released native apps yet.
See More
Top
Pro
Responsive platform
Works on all devices, from mobiles to laptops.
See More
Top
Pro
Full Markdown (with LaTeX equation) support
Great to be able to use all the features of Markdown, rather than a select few.
See More
Specs
Platforms:
Web, Mac, Windows, Linux, iOS, Android
API:
Yes
Collaborative:
Yes
Search:
Yes
See All Specs
Hide
Get it
here
28
0
Vim
All
46
Experiences
Pros
30
Cons
15
Specs
Top
Pro
Lightweight and fast
When compared to modern graphical editors like Atom and Brackets (which have underlying HTML5 engines, browsers, Node, etc.), Vim uses a sliver of the system's memory and it loads instantly, all the while delivering the same features. Vim is also faster than Emacs.
See More
Top
Con
High effort to customize
A lot of time and effort is put in to make it specific to your needs.
See More
Top
Pro
Free and open-source software
Vim is open-source, GPL-compatible charityware.
See More
Top
Con
Difficult learning curve
You'll spend a lot of time learning all the commands and modes supported in Vim. You'll then spend more time tuning settings to your needs. Although once it's tuned to your needs, you can take your .vimrc to any machine you need and have the same experience across all your computers.
See More
Top
Pro
Works in terminal over SSH
Unlike other editors such as Sublime Text, Vim is a command line editor and hence can be used in remote development environments like Chromebooks via SSH.
See More
Top
Con
Difficult to copy, paste, and delete
See More
Top
Pro
Extremely portable
Vi/vim exists on almost all Unix-like platforms. It's the de-facto Unix editor and is easily installed on Windows. All you need to make it work is a text-based connection, so it works well for remote machines with slow connections, or when you're too lazy to set up a VNC/Remote Desktop connection.
See More
Top
Con
Poor support for external tooling
Many plugins depend on optional Python and Lua features, which may or may not be included in whatever binaries are available for your system. And without platform-specific hacks, it is difficult for plugins to operate in the background or use external tooling.
See More
Top
Pro
Keyboard-based, mouse-free interface, and trackpad support
There's no need to reach for the mouse or the Ctrl/Alt buttons again. Everything is a mere key press or two away with almost 200 functions specifically for text editing. Vim does support the mouse, but it's designed so you don't have to use it for greater efficiency. Versions of Vim, like gVim or MacVim, still allow you to use the mouse and familiar platform shortcuts. That can help ease the learning curve and you'll probably find you won't want to (or need to) use the mouse after a while.
See More
Top
Con
Poor feature discoverability
Though basic features like syntax checking, autocompletion, and file management are all available out of the box or with minimal configuration, this is not obvious to new users, who might get intimidated or assume they need to install complex plugins just so they can have this functionality. Other features new users might expect to find embedded in Vim, such as debugging, instead follow a UNIX-style model where they are called as external programs, the output of which might then be parsed by Vim so it can display results. Users not familiar with this paradigm will likely fault Vim for lacking those features as well.
See More
Top
Pro
Great productivity
Vim's keyset is mainly restricted to the alphanumeric keys and the escape key. This is an enduring relic of its teletype heritage, but has the effect of making my ost of Vim's functionality accessible without frequent awkward finger reaches.
See More
Top
Con
No smooth scrolling
Even with the GUI version, the lines jiggle line-by-line. If you are used to smooth scrolling, this is very annoying, especially when working with larger files.
See More
Top
Pro
Macros increase productivity
Many text editors have programmable macros, but since Vim is keyboard-based, your programmed macros are usually far more predictable and easier to understand.
See More
Top
Con
Doesn't play nice with the system cut/paste mechanisms
This can be worked around somewhat if you disable mouse for insert mode. You can then right-click your terminal and use paste like you would anywhere else in a terminal. But it still doesn't feel right when the rest of your system uses Ctrl-C/Ctrl-V, and you have a system clipboard manager, and so forth.
See More
Top
Pro
Excellent performance
As it loads the whole file into RAM, replacing all string occurrences in 100 MB+ files is quick and easy. Every other editor has sort of died during that. It is extremely fast even for cold start. Vim is light-weight and very compact. In terminal, it only uses a small amount of memory and anytime you invoke Vim, it's extremely fast. It's immediate, so much so you can't even notice any time lag.
See More
Top
Con
Outdated UI
See More
Top
Pro
Tons of plugins/add-ons
This makes Vim the definitive resource for every environment (Ruby/Rails, Python, C, etc.), or simply just provides more information in your view.
See More
Top
Con
Requires Brain Mode Switching
When editing in vim, you have you use the vim keys; when editing in every other window on your PC, or in Word or Excel or other application, you need to use the standard system key combinations. Learning the vim combinations can actually make you SLOWER at everything else.
See More
Top
Pro
Everything is mnemonic
No need to memorize different key combinations for things like deleting the text inside of a block or deleting the text inside of a pair of quotes. It's just a series of actions, or nouns and verbs, or however you prefer to think about it. If you want to delete, you select "d"; if you want it to happen inside something, you select "i"; and if you want the surrounding double-quotes, just select ". But if you were changing the text, or copying it, or anything else, you'd still use the same "i" and ". This makes it very easy to remember a large number of different extremely useful commands, without the effort it takes to remember all of the Emacs "magic incantations", for example.
See More
Top
Con
Slow when opening files with very long lines
A lot of very long lines can make Vim take up to a minute to open files, where a few other editors take only seconds to load the same file.
See More
Top
Pro
Vimtutor
Vimtutor is an excellent interactive tutorial for people with no prior experience of Vim. It takes about 30 minutes to complete.
See More
Top
Con
Consume brain energy for editing that should be used for logic
Text editing in vim is awesome, but it requires thinking about combination of commands. In other editors, you don't have to think about how to delete this part of code. You just think about how to implement a feature, what is a good design for this code. Even after you get used to using vim, it still requires your brain for editing.
See More
Top
Pro
Amazing extensibility
Vimscript provides a rich scripting functionality to build upon the core of Vim. When combined with things like Tim Pope's Pathogen plugin management system, it becomes easy to add support for syntax, debugging, build systems, git, and more.
See More
Top
Con
Foreign keyboards have a hard time on Vim out of the box
A lot of frequently-used keybinds are way harder to access on foreign keyboards because they use different layouts. For example, Germans use the QWERTZ layout, while French use the AZERTY.
See More
Top
Pro
Usable from a Terminal or with a GUI (GVim, MacVim)
If you happen to be logged into SSH, you can use Vim in a terminal. It can also run with a GUI too.
See More
Top
Con
Unintuitive mode switching
See More
Top
Pro
Has been supported for a long time
And will be supported for many years to come.
See More
Top
Con
Extensibility isn't that great
While it has gotten better and some projects are slowly starting to build proper extension support, it still can't and by design never will achieve the extensibility of another editor like emacs.
See More
Top
Pro
Once learned, it's very hard to forget
Vim's somewhat steep learning curve is more than made up for once you've mastered a few basic concepts and learned the tricks that allow you to program faster with fewer cut/paste mistakes.
See More
Top
Con
Works poorly out of the box with right-to-left
See More
Top
Pro
Can never outgrow it
The fact that very few, if any, people claim to be a "Vim Master" is a testament to the breadth and depth of Vim. There is always something new to learn - a new, perhaps more efficient, way to use it. This prevents Vim from ever feeling stale. It's always fresh.
See More
Top
Pro
Flexible feature-set
Vim allows users to include many features found in IDEs and competing editors, but does not force them all on the user. This not only helps keep it lighter in weight than a lot of other options, but it also helps ensure that some unused features will not get in the way.
See More
Top
Pro
Has multiple distinct editing modes
Interaction with Vim is centered around several "modes", where purpose and keybindings differ in each. Insert mode is for entering text. This mode most resembles traditional text entry in most editors. Normal mode (the default) is entered by hitting ESC and converts all keybindings to center around movement within the file, search, pane selection, etc. Command mode is entered by hitting ":" in Normal mode and allows you to execute Vim commands and scripts similar in fashion to a shell. Visual mode is for selecting lines, blocks, and characters of code. Those are the major modes, and several more exist depending on what one defines as a "mode" in Vim.
See More
Top
Pro
By default in Linux
All Linux distributions out there will have Vim built into them, which is highly convenient!
See More
Top
Pro
Vim encourages discipline
If you use Vim long enough, it will rewire your brain to be more efficient.
See More
Top
Pro
Useful undo features
Vim does not only offer unlimited undo levels, later releases support an undo tree. It eventually gives the editor VCS-like features. You can undo the current file to any point in the past, even if a change was already undone again. Another neat feature is persistent undo, which enables to undo changes after the file was closed and reopened again.
See More
Top
Pro
Donations and support to Vim.org helps children in Uganda through ICCF Holland
See More
Top
Pro
Built-in package management
Starting with Vim 8, a package manager has been built into Vim. The package manager helps keep track of installed plugins, their versions and also only loads the needed plugins on startup depending on the file type.
See More
Top
Pro
If you can use Vim you can also use vi
See More
Top
Pro
Works on Android
See More
Top
Pro
Productivity enhancing modal paradigm
As with all vi-like editors, Vim provides a modal paradigm for text editing and processing that provides a rich syntax and semantic model for composing succinct, powerful commands. While this requires some initial investment in learning how it works in order to take full advantage of its capabilities, it rewards the user well in the long run. This modal interface paradigm also lends itself surprisingly well to many other types of applications that can be controlled by vi-like keybindings, such as browsers, image viewers, media players, network clients (for email and other communication media), and window managers. Even shells (including zsh, tcsh, mksh, and bash, among others) come with vi-like keybinding features that can greatly enhance user comfort and efficiency when the user is familiar with the vi modal editing paradigm.
See More
Top
Pro
Asynchronous I/O support
Since Vim 8, Vim can exchange characters with background processes asynchronously. This avoids the problem of the text editor getting stuck when a plugin that had to communicate with a server was running. Now plugins can send and receive data from external scripts without forcing Vim to freeze.
See More
Top
Pro
Can set up keymapping
See More
Top
Pro
Multiple clipboards
It is called "registers".
See More
Top
Pro
Status Booster
Using vim not just increase your productivity, but helps you flex.
See More
Specs
Platforms:
Linux, macOS, Windows, Cygwin
License:
Vim License
Price:
0
Extension language:
Vim
Hide
See All
Experiences
free
2402
445
Zettlr
All
7
Experiences
Pros
4
Cons
2
Specs
Top
Pro
Focuses on writers
While many Markdown editors don't offer specific support for a certain type of workflow, or offer features for scientific workflows only, Zettlr offers features that help the writing process of journalists or researchers in the arts and humanities. It's a lot more text-focused than most editors.
See More
Top
Con
Obtrusive, like someone WITH CAPS LOCK ON
Too loud, too much going on, and definitely an in-your-face sort of feeling.
See More
Top
Pro
Citation support
While it supports a diverse range of syntax (chart, easy image insert, etc.) found in other editors, the great citation support made it possible to write real articles. Citation from Zotero and Mendeley can be inserted easily which is a huge plus.
See More
Top
Con
Large, slow, can't open just a single .md file
See More
Top
Pro
Almost perfect
This is the best option, still not perfect, there are some bugs like creating / editing tables and resizing images, but the PROS destroy the CONS, easy quotes, WYSIWYM , attachments tab (supports attaching and opening links to any file), table of contents, TAGs, easy hyperlink between files (same as citations), export to many formats (like Word, HTML5, PDF)...
See More
Top
Pro
Renders math in-place through KaTex
See More
Specs
Platforms:
Windows, Linux, Mac
License:
GPL v3
Technology:
Electron, TypeScript
Hide
See All
Experiences
0
102
17
Turtl
All
7
Experiences
Pros
3
Cons
3
Specs
Top
Pro
Multiple Platforms (Windows, Linux, macOS, Android, Firefox, Chrome)
Turtl has applications for all the major operating systems, as well as Android. In addition, there are extensions available for Firefox and Chrome that cooperate with the downloadable applications.
See More
Top
Con
No iOS app
While many other operating systems have a client, iOS does not have one yet (though it is planned).
See More
Top
Pro
Open source
The app is licensed under GPLv3 making it open source. This means that anyone can use the code and contribute. This also makes it easy to use on one's own server or for company solutions.
See More
Top
Con
No image embedding
Instead of image embeddings, there's a sort of poor man's substitute: image + description. If you add an image, you can create a description of any size and with all the formatting features. It can be used instead of image embedding but much more limited: only one image and only at the very top.
See More
Top
Pro
Good security
After assigning a password to your account in Turtl, a key is created to encrypt the entire account. No data is stored on their servers meaning they have no access to unencrypted content. This is a huge leg up when comparing to other Evernote alternatives.
See More
Top
Con
Internet dependent
Requires Internet connection to initiate offline mode, loses access to notes without Internet or server.
See More
Specs
Platforms:
Windows, Linux, Mac, Android
Hide
See All
Experiences
Free
517
81
Notion
All
21
Experiences
Pros
15
Cons
5
Specs
Top
Pro
Full-featured on desktop, mobile and web
Even the right-click menus on the web are the same as the app.
See More
Top
Con
Not very fast using native apps
Can take time if you're switching between lots of pages often as it needs to load the data each time
See More
Top
Pro
Unlike anything else
One of the most complete applications one can use to build a personal dashboard (or professional) and migrate all other services to it. No more calendar, task, notes, financials, lists, writing and wiki apps, just Notion.
See More
Top
Con
Not always very intuitive
Column filters are not that intuitive to apply.
See More
Top
Pro
Pages within pages within pages, to infinity
You can have a ridiculous amount of information within a single note. Look at how it works, you'll be surprised!
See More
Top
Con
No true backup
True backup can only exist if it's automated and easily recoverable. Else, it's just an outdated copy or useless scrambled data.
See More
Top
Pro
Flexible contents storage and organization
You can upload files and embed online stuff in any hierarchical structure using pages, toggle lists, etc.
See More
Top
Con
Designed with teams in mind, and less formatting than Evernote
Evernote may be more individual-oriented and has more formatting and such options available, but whether that affects you is down to personal preference. Try both and see which you prefer.
See More
Top
Pro
Highly visual, with icons next to every new page and so on
This feature makes it very easy to find certain notes and such. And great for visual people as well. You could also add images as icons instead, if you like.
See More
Top
Con
Not yet a new protocol, as it could be! (or could it?)
Think of scuttlebutt or email. the best Evernote alternative would be a "web 3.0" of sorts. Something that would be just a simple file added to a computer and automatically replicated to other computers along with a website and any company could easily pick up the concept and make their own hosting, including some awesome google drive/host of sorts.
See More
Top
Pro
Blocks offer incredible flexibility
The basic unit of organization in Notion is the block, which can be a chunk of text, an image, a bullet point, or even a link to another page. Each page consists of these blocks, which can be easily reorganized, moved to other pages, converted into other content types, or generally manipulated in many useful ways. Because of blocks, restructuring information in Notion is way easier than in any other wiki or notebook app.
See More
Top
Pro
Does a great job with both notes and to-dos
To-dos in Notion aren't just dot point lists. You can drag and drop them into columns just like Trello (Kanban style), you can have sub-tasks, and you can easily mark things off as completed so they are no longer in your way. Notes are also powerful, with proper formatting and ways to manage and search for them, which makes it a great Evernote alternative.
See More
Top
Pro
Cross platform
Works with Android, iOS, Windows, & Mac OSX.
See More
Top
Pro
Awesome for wikis
You can easily start writing a bunch of web pages, share it with co-workers and choose whether to publicize or keep your contents private. It's also easy to hyperlink pages.
See More
Top
Pro
Amazing view flexibility
You can create different views for a page's content and easily toggle between kanban, table, etc. (As long as the content is able to allow different views.)
See More
Top
Pro
Quick and effective search
Just type in a word and you'll have results in no time at all.
See More
Top
Pro
Attach files in tables
You can attach files in table cells, which is a feature missing in most spreadsheet-like applications.
See More
Top
Pro
Great spreadsheet functionality
You can use calculation/formula, links, attachment, inter-referencing of data from other pages or tables, embed documents and images in the table cells.
See More
Top
Pro
Renders Markdown Syntax
Add code blocks, Headers, bullet point, numbered lists, or To-Do boxes by typing using Markdown Syntax (instead of klunkily moving the mouse to formatting boxes)
See More
Top
Pro
Less headaches when editing pages
Lets you restore your page to a past edit. Also works with sub-pages and databases. Though it is worth mentioning that it's a paid feature.
See More
Specs
Platforms:
Windows, macOS, iOS, Android, Web
Collaborative:
Yes
Offline access:
No
Markdown support:
Export
See All Specs
Hide
See All
Experiences
Get it
here
450
88
Joplin
All
24
Experiences
Pros
14
Cons
9
Specs
Top
Pro
Offline access
See More
Top
Con
Sync issues with Android
If update on Linux then sync on Android, sometimes the Android sync will duplicate or remove some journal notes. Seems to be a bug in the Android app. The Linux app alone without sync with Android seems to work well using Dropbox. But don't expect changes you make on Android to sync properly back to Linux.
See More
Top
Pro
Open source
Peace of mind that there is no malicious piece of software in the app.
See More
Top
Con
Sync issue under Linux
The Linux client has a bug that requires the user to click the mouse frequently in order for sync to proceed. This bug has been open for a while.
See More
Top
Pro
Encryption
See More
Top
Con
Gargantuan memory footprint
1GB+ of memory for taking notes.
See More
Top
Pro
Cross-platform
Supports Windows, Mac, Linux, Android and iOS.
See More
Top
Con
Old school interface
See More
Top
Pro
Supports file attachments
See More
Top
Con
Bloated
This project is suffering from feature creep and uses a lot of memory for a note-taking app.
See More
Top
Pro
Supports markdown
See More
Top
Con
App Image launches very slowly
On Linux, you can only install via App Image, which take 5+ seconds to launch. I can launch LibreOffice in under two seconds.
See More
Top
Pro
Supports tags for notes
See More
Top
Con
Sync issues on Windows
No way to change account settings and sync easily corrupted.
See More
Top
Pro
Web Clipper
Browser extension saves full pages, clean content, or screen selections to new notes.
See More
Top
Con
Weak tag searching
Joplin can currently only search for a single tag at a time. None of the boolean operators (AND, OR, NOT) are available for use in searches. This greatly diminishes the usefulness of tags in Joplin.
See More
Top
Pro
Optional CLI interface
Provides a CLI interface for terminal lovers.
See More
Top
Con
Can't create tags from the mobile app
See More
Top
Pro
Supports multiple languages
English, French, and Spanish, Italian, German, Czech and many others.
See More
Top
Pro
Active user forum with support from app creators
Support, troubleshooting, and new feature requests are easy to make at the user forum and you can contact the app creator directly.
See More
Top
Pro
Dropbox support
Can sync using Dropbox.
See More
Top
Pro
Nextcloud support
See More
Top
Pro
Timed alarm reminder for to-do lists
See More
Specs
Platforms:
Windows, Mac, Linux, Android, iOS
License:
MIT
Export:
Yes
Sync:
File System, OneDrive, Next Cloud, WebDav, DropBox, JoplinCloud, s3 (Beta)
See All Specs
Hide
See All
Experiences
FOSS
679
130
Word Grinder
All
8
Experiences
Pros
6
Cons
2
Top
Pro
Lightweight
See More
Top
Con
Spell check not included in other languages
Dictionaries not included for spell checking in languages other than English. Hard to find or install.
See More
Top
Pro
Good UI
Adjusting the options of the used terminal, you can get a nice retro look of the 80s, great deal if you run it on cool-retro-term.
See More
Top
Con
Limited
Less powerful, with more limited typesetting, than other CLI apps such as Vim and Emacs.
See More
Top
Pro
No mouse required
Your hands will always be on the keyboard and not jumping to the mouse.
See More
Top
Pro
Simple learning curve
Only 1 key to remember: ESC (show the main menu).
See More
Top
Pro
Minimalist
Just the tools needed.
See More
Top
Pro
Distraction-free
Just you and your words.
See More
Hide
See All
Experiences
0
9
2
Apache OpenOffice
All
11
Experiences
Pros
7
Cons
3
Specs
Top
Pro
Free and open source
Licensed under Apache License.
See More
Top
Con
Dead project
The project looks dead. They can't close even serious security vulnerabilities. You might want to use Libreoffice instead.
See More
Top
Pro
Comprehensive suite of applications
Apache OpenOffice includes applications for word-processing, spreadsheets, presentations, and database management.
See More
Top
Con
Documentation is lacking
OpenOffice documentation is incomplete and language is highly technical.
See More
Top
Pro
Cross-platform
OpenOffice is available on Windows, Mac OS, and *nix systems.
See More
Top
Con
No copyleft
It's good for developers but bad for openoffice for example: libreoffice relicensed it under GPL now libreoffice can integrate all changes made to openoffice but openoffice is unable to integrate improvements from libreoffice.
See More
Top
Pro
Multilingual
OpenOffice is available in 170+ languages.
See More
Top
Pro
No CopyLeft
Unlike LibreOffice, its Grandfather OpenOffice is real open software for anyome.
See More
Top
Pro
Full compatibility with Microsoft
Fully compatible with Microsoft formats - from the oldest to the latest.
See More
Top
Pro
Quickstart
It has quickstart on Linux, a feature that makes opening a file blazing fast.
See More
Specs
Platforms:
Windows; Linux; Android; WP
Database management:
No
Project management:
Yes
Word processing:
Yes
See All Specs
Hide
See All
Experiences
Get it
here
83
52
ONLYOFFICE
All
11
Experiences
Pros
9
Cons
1
Specs
Top
Con
Web app
It is a text editor that is running in a browser window, how can you trust this? Not to mention that it needs a lot more system resources than native apps.
See More
Top
Pro
Available for Windows, Linux, MacOS, iOS, and Android
ONLYOFFICE offers desktop applications for Linux, Windows, and MacOS that can be connected to the web-based solution for document sharing and collaboration.
See More
Top
Pro
High MS Office compatibility
Highly compatible with .docx, .xlsx, .pptx as well as with .odf.
See More
Top
Pro
Collaboration capabilities
See More
Top
Pro
Can be used as a web app
ONLYOFFICE offers a web-based office suite that can be deployed on your own server using various deployment options, including Docker script and virtual machines with the software pre-installed.
See More
Top
Pro
Has a portable version
ONLYOFFICE portable works on almost every Linux distribution.
See More
Top
Pro
Advanced work with math equations
See More
Top
Pro
Integration with Nextcloud
Easy integration with Nextcloud for collaborative work.
See More
Top
Pro
Free and open source
ONLYOFFICE is distributed under AGPL v.3 license with the source code available on GitHub.
See More
Top
Pro
Support for add-ons (plugins)
See More
Specs
Platforms:
Web-based (Windows, Linux, Mac OS, Android-clients)
Versioning:
Yes
Project management:
Yes
Word processing:
Yes
See All Specs
Hide
See All
Experiences
FLOSS
258
160
Atlantis Word Processor
All
6
Experiences
Pros
4
Cons
1
Specs
Top
Con
No Mac version.
See More
Top
Pro
Spotlight
Has the Spotlight feature to let you focus on the current document fragment.
See More
Top
Pro
Sounds
Can play old-fashioned typewriter sounds when I type text.
See More
Top
Pro
Ebook
Can export documents directly to EPUB and MOBI.
See More
Top
Pro
Fully customizable
Can customize toolbars, colors, sounds, and keyboard shortcuts.
See More
Specs
Platforms:
Windows
Hide
$35 or free
12
9
VNote
All
8
Experiences
Pros
7
Specs
Top
Pro
Able to attach files to a note
See More
Top
Pro
Markdown
Markdown note-taking app.
See More
Top
Pro
Free, open source
Source code is available via https://github.com/tamlok/vnote/
See More
Top
Pro
Fast, uses C++ and QT Frameworks
See More
Top
Pro
Supports MathJax, Mermaid Diagrams, Flowchart.js
See More
Top
Pro
Vim Mode
See More
Top
Pro
Can be synced using third-party synchonization services
All files on your local disk. Utilize third-party synchronization services to work from anywhere seamlessly. (taken from https://tamlok.github.io/vnote/)
See More
Specs
Platforms:
Windows, Linux, Mac
Hide
See All
Experiences
Free
11
0
Notable
All
3
Experiences
Pros
3
Top
Pro
Organize projects with tags
Simple tagging support is easy to use, and allows quick searching through multiple documents.
See More
Top
Pro
Simple, clean interface
With a clean UI that lacks clutter, you can get right to work without a bunch of distractions.
See More
Top
Pro
Supports markdown
Uses GIt-flavored Markdown, which is a popular and easy to use WYSIWYM format.
See More
Hide
Free
7
0
Frost
All
5
Experiences
Pros
5
Top
Pro
Downloading option
This writing platform has the ability to download the written content in the form a .txt file with a single click.
See More
Top
Pro
Completely free to use
All the themes and features of this platform are free of cost. So it's basically a no-brainer for anyone who prefers to write in a minimalistic space with high quality music!
See More
Top
Pro
Ad-free Music
The music which is played here is completely ad-free. So one isn't bothered with ads every other minute!
See More
Top
Pro
Multiple Themes
There are multiple themes which allow the user to write in whatever atmosphere he wants to write in.
See More
Top
Pro
Ambient Music and Individual Fonts
There are various themes, each having a different font and ambient music mix.
See More
Hide
FREE
7
0
Lenote
All
4
Experiences
Pros
2
Cons
1
Specs
Top
Pro
Great for note-taking
All entries are organized in notes and notebooks, accessed from the sidebar or via search.
See More
Top
Con
Incomplete Markdown support
Only a select subset of Markdown commands are supported.
See More
Top
Pro
Minimalist design
The app has a very clean, light-grey interface that consists of an optional sidebar and the main text area.
See More
Specs
Platforms:
MacOS
License:
Proprietary
Export:
PDF, Plain Text
Hide
Get it
here
4
0
hackmd.io
All
26
Experiences
Pros
20
Cons
6
Top
Pro
Collaborative
Allows multiple people to edit the same note in realtime.
See More
Top
Con
Custom grammar and spell checker
It does not work well in French (and probably other languages).
See More
Top
Pro
Automatic "table of content"
Automatically generates a "table of content" of your headlines.
See More
Top
Con
Not as beautiful as StackEdit
See More
Top
Pro
Supports revisions
Allows you to go back in time to a previous version of your document.
See More
Top
Con
Cannot organize notes
Doesn't have the ability to organize notes or create notebooks.
See More
Top
Pro
Edit and view-only permission settings
Note: Enterprise Edition has even more refined permissions, but the permissions in the non-enterprise edition are pretty powerful.
See More
Top
Con
Slow servers / problem with online / offline switching
Servers can be slow / down for a few seconds preventing from working on the documents currently being edited.
See More
Top
Pro
Shortcuts from Sublime Text, Emacs, and Vim
See More
Top
Con
No PDF export support
See More
Top
Pro
Tag support
This is truly helpful for organizing your documents.
See More
Top
Con
Tries to be smart
It guesses what you want to do and tries to help, often in a wrong and annoying way, for example it when working with list items. Ironically Markdown was built to solve those problems (you format yourself with simple codes and it just works).
See More
Top
Pro
Can create slide-shows
Supports creating slide-shows in markdown.
See More
Top
Pro
Online
It's multi-platform (works well on smartphones) and there is no need to install anything.
See More
Top
Pro
Math support
Use LaTeX seamlessly within the editor.
See More
Top
Pro
Dark and white theme
Perfect for working at night.
See More
Top
Pro
Lightweight
See More
Top
Pro
Book mode view
This is really helpful for longer documents. Or even "books." This is also super helpful for journaling activities and the like.
See More
Top
Pro
Available as a web service
HackMD service can be downloaded and installed in custom servers.
See More
Top
Pro
Cross platform
Is available as desktop app.
See More
Top
Pro
Dropbox import and export
See More
Top
Pro
Extended markdown syntax
Adds supports for embeddings from Youtube, Vimeo, Speakerdeck, GitHub gist etc; and even creating UML diagrams, Graphviz graphs, Timing charts, and even Music notes! and alerts and comments boxes and emojis.
See More
Top
Pro
Open source
HackMD Core's source is available on GitHub.
See More
Top
Pro
Free
You can subscribe to it for more features.
See More
Top
Pro
Github Gist import and export
People who subscribe can push and pull unlimited.
See More
Top
Pro
Google Drive import and export
See More
Hide
See All
Experiences
0
62
4
Trilium Notes
All
14
Experiences
Pros
9
Cons
4
Specs
Top
Pro
Excellent WYSIWYG interface
See More
Top
Con
Interface can be confusing
There is a fair amount of flexibility to the interface but it can also become confusing, especially when some parts are not necessarily simple to use. Most of the basic features nevertheless are intuitive.
See More
Top
Pro
Note encryption
See More
Top
Con
Database storage rather than files
This makes it a little less simple to work with (also has benefits).
See More
Top
Pro
Free and open source software
See More
Top
Con
Not markdown
It will import and export markdown but it does not store content as markdown. This isn't necessarily a problem if you don't need it.
See More
Top
Pro
Attributes that can be assigned to nodes and inherited
See More
Top
Con
Synchronization requires use of Trilium's sync server
This can be problematic to set up unless you have a web server that will support the requirements of this.
See More
Top
Pro
Graph of node connectivity
See More
Top
Pro
Note versioning
See More
Top
Pro
Synchronization with a server
You can set up synchronization but you need a server to do this.
See More
Top
Pro
Database storage rather than files
This enables the tool to do a lot of things that would be difficult with plain text file storage.
See More
Top
Pro
Archival functionality
See More
Specs
Platforms:
Linux, Windows, Mac
License:
AGPL 3.0
Technology:
JavaScript
Hide
See All
Experiences
Free
31
4
Logseq
All
10
Experiences
Pros
7
Cons
2
Specs
Top
Pro
Privacy-first
Logseq is a privacy-first tool for thought.
See More
Top
Con
Keyboard-driven editing/navigating is descent but average
It is only because I was a long-time Checkvist user that I say this. Checkvist has keyboard-driven controls which are in a league of their own.
See More
Top
Pro
Networked notes
Similar to Roam's technique of letting the notes flow with links to each other.
See More
Top
Con
Still in Alpha
Logseq is still in Alpha and is under heavy development.
See More
Top
Pro
Local-first software
Every topic is its own flat file. Nothing is better than keeping your data in the file system with an option of git source control or online backup. https://www.inkandswitch.com/local-first/
See More
Top
Pro
Daily journal is capture on Steriods
The daily journal feature allows you to quickly capture disparate topics under today's date and by way of tags make things organized and findable from any topic page.
See More
Top
Pro
Open source
Logseq is opensource.
See More
Top
Pro
Structured data over willy-nilly formatting
Lots of apps are too graphically flexible in how they allow content to be entered, placed, and formatted. They act like Word when what you want when authoring content is Markdown. Content and semantic structure, not graphical frills.
See More
Top
Pro
Org syntax
Logseq support Emacs Org syntax out of the box.
See More
Specs
Platforms:
Windows, Linux, Mac, Android, iOS
Technology:
Clojure
Offline access:
Yes
Markdown support:
Yes
See All Specs
Hide
See All
Experiences
FREE
111
11
Org mode for Emacs
All
17
Experiences
Pros
11
Cons
6
Top
Con
Obtuse documentation
The documentation assumes a level of understanding of basic Emacs usage that not all users may have.
See More
Top
Pro
Can be as simple or as complex as you want
Org mode started out as a simple outlining/note taking app. Then each outline heading can optionally be a TODO list item. And if you desire, you can add SCHEDULE and DEADLINE dates. (Schedule being the date you'd like to start the item.) You can customize the TODO states to add things like DELEGATED, WAITING, BLOCKED, etc.
See More
Top
Con
Complicated to get started
See More
Top
Pro
Libre/open source
See More
Top
Con
Difficult to use as a database
For example, if you need to quickly populate client details on quotes, unfortunately its easier to find, copy & paste.
See More
Top
Pro
Cross platform
Emacs runs on all platforms, Windows, Linux, OSX, even Android and IOS
See More
Top
Con
Not suitable for normal users
Not even a majority of software developers can be bothered to use Emacs (or VI, for that matter).
See More
Top
Pro
Exports data to PDF, LaTeX, HMTL and other
You can even build presentation or blog from your data
See More
Top
Con
PDF export can be difficult
Latex assumes you're a (compliant) student, have to do a lot of research to get what you want out of it.
See More
Top
Pro
Supports tables with formules (quite powerful!)
See More
Top
Con
Uses Emacs (for those who prefer vi, menus, etc.)
See More
Top
Pro
Plain text data storage
Future-proof.
See More
Top
Pro
Inline image displaying
See More
Top
Pro
Free but copyrighted
See More
Top
Pro
Fast interaction
Once muscle-memory sets in, can be much faster to use than a point & click program.
See More
Top
Pro
Uses Emacs
See More
Top
Pro
All apps
See More
Hide
See All
Experiences
$0.00
82
11
Mark Text
All
8
Experiences
Pros
4
Cons
3
Specs
Top
Pro
Open Source
See More
Top
Con
Not lightweight
On Windows 10 the installed size was 259 Mb, no surprise as this is an Electron based app.
See More
Top
Pro
WYSIWYG or TEXT visualisation
See More
Top
Con
Not a WYSIWYG editor, no formated preview
There is only plain text editing.
See More
Top
Pro
Has RTL language support
Can be used with languages such as Hebrew and Arabic.
See More
Top
Con
Limited block selections
See More
Top
Pro
Very light : 103 Mb only
See More
Specs
Platforms:
Windows, Linux, Mac
License:
MIT
Hide
See All
Experiences
Free
52
8
Boostnote
All
15
Experiences
Pros
10
Cons
4
Specs
Top
Pro
Cross platform support
Supports Windows, macOS and Linux.
See More
Top
Con
Some of the features are not consistent
See More
Top
Pro
Markdown support
See More
Top
Con
Must use third-party service for sync-ing (Dropbox, etc.)
Boostnote does not have sync-ing capabilities and relies on third-party services to fulfil notes storage. There are additional steps involved to set this up.
See More
Top
Pro
Free
See More
Top
Con
Can't work in "real" offline mode
See More
Top
Pro
Open source
See here.
See More
Top
Con
Very poor syncing
Data loss may occur on syncing.
See More
Top
Pro
Great for developers
Boostnote is great for developers looking to take programming notes with code snippets and such.
See More
Top
Pro
Supports code snippets and syntax highlighting
Boostnote has the ability to store code snippets and comes with syntax highlighting out of the box, supporting many languages.
See More
Top
Pro
Works offline
Boostnote doesn't require an internet connection to work. You can write notes offline and sync later.
See More
Top
Pro
Global search, tag feature
See More
Top
Pro
Comes with many themes
Boostnote comes with many themes out of the box, most of which are popular themes and color schemes for code editors: e.g. 3024, base16, solarized, tomorrow.
See More
Top
Pro
vim/emacs key bindings available
Boostnote supports vim/emacs key bindings. If you're a developer familiar with either of them, navigation should be easy to pick up.
See More
Specs
Platforms:
Windows/MacOS/Linux/Android/IOS
License:
GPL v3
API:
No
Dark Theme:
Yes
See All Specs
Hide
See All
Experiences
Get it
here
605
54
Built By the Slant team
Find the best product instantly.
4.7 star rating
Add to Chrome
Add to Edge
Add to Firefox
Add to Opera
Add to Brave
Add to Safari
Try it now - it's free
{}
undefined
url next
price drop