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 Frost?
Ad
Ad
iA Writer
All
10
Experiences
Pros
8
Cons
1
Specs
Top
Con
No Linux support
See More
Top
Pro
Noise Free Writing Experience removes even the program bar
The Noise Free Writing Experience is one of the first approaches to create a first class distraction-free environment. The feature hides the Mac program bar when you start writing.
See More
Top
Pro
A mode that brings focus to the sentence you're working on
Enabling Focus Mode will dim the whole text except the sentence you are currently writing on.
See More
Top
Pro
Can tell how long it would take to read through what you've written
See More
Top
Pro
Markdown support
See More
Top
Pro
Syncs using iCloud and Dropbox
iA Writer can sync documents using iCloud or Dropbox from within the editor for use across multiple devices.
See More
Top
Pro
Create whole document by including separate images/markdown docs
This is new and very awesome feature in iA Writer 4.0.
See More
Top
Pro
Can export a Word document
See More
Top
Pro
Available for all Apple devices
iA Writer is available for Mac, iPhone and iPad.
See More
Specs
Platforms:
MacOS, iOS, Android, Windows
License:
Proprietary
Price:
$59,99
Export:
HTML, PDF
See All Specs
Hide
See All
Experiences
Get it
here
89
26
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
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
Letterspace
All
5
Experiences
Pros
4
Cons
1
Top
Pro
Full featured iOS app
This was a iOS first app and that is clear. Great swipe bar interface on iOS.
See More
Top
Con
No in-app Markdown preview
You can export to PDF or HTML with formatting, but no preview in the Mac app.
See More
Top
Pro
Simple, yet powerful interface
Keyboard shortcuts for basic text formatting. A few theme options. Full screen mode and swipe gestures.
See More
Top
Pro
@mentions and #tags for easy organization
See More
Top
Pro
Advanced Markdown support
Features Markdown support that many other text editors don't; such as Todo's ( -[x] ) and Strikethrough.
See More
Hide
Get it
here
6
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
MacDown
All
13
Experiences
Pros
9
Cons
3
Specs
Top
Pro
Free and open source
MacDown is a free and open source editor influenced by Mou. It's released under the MIT license.
See More
Top
Con
Not very versatile
MacDown is not very powerful or versatile. It's not customizable or extendable. This is what makes it so simple, but it's not for people who want more from their tools.
See More
Top
Pro
Real-time split-screen preview
MacDown's main view is split into two panels. The user types on the left and the Markdown is rendered on the fly in the right panel. This helps users to better understand the way they are formatting their document.
See More
Top
Con
Frequently fails to update the display and/or flat out hangs
Must often restart MacDown.
See More
Top
Pro
Markdown previews can be customized with CSS
You can use a CSS file to customize the rendered output and the file preview you are working on will display the rendered Markdown with the custom CSS styling on top.
See More
Top
Con
The Markdown preview is rather heavy on the CPU
The Markdown preview needs a lot of resources to keep rendering on-the-fly after each keystroke. A single keystroke in the editor panel may trigger up to 5 seconds of max-CPU usage.
See More
Top
Pro
Supports syntax highlighting in fenced code blocks
MacDown has syntax highlighting support for various languages when writing code in fenced code blocks.
See More
Top
Pro
Good auto-completion
MacDown has a good built-in auto-completion engine for Markdown symbols.
See More
Top
Pro
Support for GFM
See More
Top
Pro
Ideal for day-to-day programmers' work and MarkDown novices alike
Using MacDown for the notorious README.md use case gets you going without reading any manual or requiring any configuration values. Think of it as a sort of TextEdit for MarkDown files. Thus its shortcomings - neither powerful nor versatile - turn out to be a PRO for novices trying to jump on the MarkDown bandwagon. Open its help and you'll immediately find yourself editing the MacDown's MarkDown help file, a MarkDown primer with some MacDown menus and configuration added.
See More
Top
Pro
Linking between pages
Unlike a few other editors, MacDown lets you link between markdown pages.
See More
Top
Pro
Tool bar with most used markdown shortcuts
This is especially useful for Markdown novices
See More
Specs
Platforms:
MacOS
License:
MIT
Export:
HTML
Preview:
Live Preview
Hide
See All
Experiences
Free
92
6
IntelliJ IDEA
All
13
Experiences
Pros
9
Cons
3
Specs
Top
Pro
Great Java Support
See More
Top
Con
Is not free
But it does have a free version (Community Edition).
See More
Top
Pro
A good editor for test-driven development
IntelliJ IDEA is really easy to work with when it comes to test-driven development in Java and JavaScript/TypeScript.
See More
Top
Con
Heavy
Consumes more resources than VSCode etc. But depending on your use-case, it can still be worth it for the benefits you get with this editor.
See More
Top
Pro
Great JavaScript support
See More
Top
Con
Autocomplete does not work while IntelliJ is indexing
But this, in general, is not much of an issue. Usually after npm install, etc.
See More
Top
Pro
Markdown support with preview
See More
Top
Pro
Supports PHP quite well
See More
Top
Pro
Great TypeScript support
Really good support for importing classes, libraries, etc. into a typescript class. Making it easy to do TDD.
See More
Top
Pro
Good BASH script support
See More
Top
Pro
Angular CLI support
See More
Top
Pro
Made by developers for developers
It can make one more efficient, but also can get one way too used to shortcuts, autocomplete, and easy debugging.
See More
Specs
Platforms:
Windows, Linux, Mac
Cross Platform:
Yes
Hide
See All
Experiences
Paid
65
6
MWeb
All
14
Experiences
Pros
10
Cons
3
Specs
Top
Pro
Excellent support of LaTeX equations
Math-heavy note takers, look no further. Mweb even supports the basic LaTeX equation labeling and referencing, which you cannot find in any other markdown editor as of early 2018. Library management is another major plus.
See More
Top
Con
Indie app, possible to be abandoned at anytime
If you like the app, please buy it to make it sustainable.
See More
Top
Pro
Supports publishing to popular web platforms
MWeb can publish Markdown files to various web platforms including (but not limited to) Wordpress, Metaweblog, Evernote, Blogger and Tumblr.
See More
Top
Con
Price become expensive
MWeb used to cost $14.99, and could be bought half the price with promo; but version 3 now costs $20, and the developer would like to go to a subscription plan.
See More
Top
Pro
Syntax highlighting in fenced code blocks
MWeb has syntax highlighting for some popular programming languages inside fenced code blocks.
See More
Top
Con
No free version
MWeb costs $20.99 and is available on the Mac App Store. There's a free trial available but it's only for 14 days which may not be enough to make a good evaluation of the software before buying.
See More
Top
Pro
Comes with an iOS app with iCloud sync
Once you are done editing your note on your mac, it's immediately available in your iOS devices, great for checkup anytime as you go.
See More
Top
Pro
Drag & drop or paste photos to the editor and display
Supports adding pictures to a Markdown file either through drag-and-drop or by pasting it.
See More
Top
Pro
Small but powerful
It has file tree, can post article, can upload pictures, can render in pretty preview themes, and is small and fast.
See More
Top
Pro
Supports both its own database and external folders
So you can have a side project stored on its database, and your current notes on external folder, with simple files, that could be share with other apps.
See More
Top
Pro
There's a free version, Mweb lite, on Mac OS and iOS
See More
Top
Pro
Supports publishing a static blog on FTP
Possible to manage your self-hosted static blog with your own css .
See More
Top
Pro
Tables
Quick insert and editing of tables.
See More
Specs
Platforms:
MacOS
License:
Proprietary
Price:
128 CNY
Cross Platform:
macOS/iOS
See All Specs
Hide
See All
Experiences
$14.99
15
2
MultiMarkdown Composer
All
13
Experiences
Pros
10
Cons
2
Specs
Top
Pro
Multimarkdown support
Not many popular Markdown editors support MultiMarkdown syntax.
See More
Top
Con
Table of contents gets out of sync sometimes
If you keep the auto-generated table of contents open while you work it gets out of sync, meaning items in the table of contents (at the end) disappear until you restart the program.
See More
Top
Pro
Multiple export options
You can export to HTML, PDF, LaTeX, RTF, OpenOffice, Microsoft Word, ePub, OPML.
See More
Top
Con
The way the preview shows images is inconsistent
The preview is a bit inconsistent with images. Sometimes it shows the image correctly, sometimes it shows a blue question mark.
See More
Top
Pro
Table of Contents support
Generates a table of contents based on the headers in the Markdown file being worked on.
See More
Top
Pro
Support for elastic tabstops
Elastic tabstops are used to align text automatically during writing. When there's a change in the text, MultiMarkdown Composer automatically aligns all lines both on the beginning and end of them.
See More
Top
Pro
CriticMarkup support
See More
Top
Pro
Optional synchronized scrolling
Hold a key down and get synchronized scrolling.
See More
Top
Pro
Fast syntax highlighting
See More
Top
Pro
Highly customizable
See More
Top
Pro
Counts words, characters, lines
See More
Top
Pro
Can show invisible characters
See More
Specs
License:
Proprietary
Supported platforms:
MacOS
Export:
HTML, PDF, LaTeX, RTF, OpenOffice, Docx, ePub, OPML
Hide
See All
Experiences
$4.99
14
2
Gingko
All
7
Experiences
Pros
5
Cons
1
Specs
Top
Con
Limited free version
The free version is limited to 100 cards and 10 documents. Depending on how you use it, this might not be enough.
See More
Top
Pro
You can customize colors
See More
Top
Pro
Allows focusing on one piece of information at a time
Since Gingko documents are "trees", they are always organized on the go. And since everything is written in cards, it is possible to focus on one chunk of content at a time.
See More
Top
Pro
Easy to overview
Despite the complexity of the tree structure, it's always clear where you are, and how to quickly add your thoughts.
See More
Top
Pro
Markdown support
All formatting is done via Markdown.
See More
Top
Pro
Non-linear
Non-linear notetaking allows you more flexibility, freedom and creativity.
See More
Specs
Platforms:
Web
Preview:
Live Preview
Hide
See All
Experiences
Get it
here
19
3
Obsidian md
All
66
Experiences
Pros
55
Cons
10
Specs
Top
Pro
Locally stored, not dependent on cloud
Everything is stored in your device. You can back them up, encrypt and process however you want to. Works completely offline. Read your notes anytime, anywhere.
See More
Top
Con
Closed Source
See related thread at Obsidian forum.
See More
Top
Pro
Markdown makes for flatter learning curve
See More
Top
Con
Needs to be better at block level references, searches, tagging
For example, if you want a tag a block of text, for obsidian, its the whole page that will get tagged.
See More
Top
Pro
Lightweight and very customizable
Variety of settings, and community themes & plugins, available from built-in marketplace. Every community plugin is open-source which means you can learn from it and develop your own.
See More
Top
Con
Proprietary software lock-in
Creates dependence on the application with the promise that the content is yours but that cannot be entirely true without the application being free and open source software. You will end up altering the way you create the content to take advantage of Obsidian features and your processes will evolve for its workflows. This replicates the lock-in pain that people experience moving their highly personal information from one proprietary platform to the next when that initial platform stops serving them well, goes out of business, or becomes a bad actor.
See More
Top
Pro
Backlinking
This allows you to link notes back and forth really easily.
See More
Top
Con
Does not export to MS Word
Can export only as a PDF file.
See More
Top
Pro
Fast growing
It's becoming more powerful everyday, it seems like they add many functions within several days.
See More
Top
Con
Requires .md files
Can't read .txt or other plaintext file formats. Can't read asciidoc files. (Available with a plugin.)
See More
Top
Pro
Cross-platform: works on Linux, MacOS, Windows, Android and iOS
See More
Top
Con
No ability to add dates that link to a daily note, when that day/note may not yet exist
You can create a backlink which doesn't yet exist; it just doesn't auto-fill for you. (Available as a plugin)
See More
Top
Pro
Very easy to use and link notes, preserves the standard form of markdown
Linking notes is a game changing feature. Very easy to use and link notes. Their implementation of markdown doesn't deviate from the standard form of markdown and so the same files can be used by other markdown programs without any consequence. While renaming note link still works.
See More
Top
Con
Too many plugins
See More
Top
Pro
Multiple Vaults
A Vault in Obsidian is like a database. Internal links and files are not shared across Vaults. Each Vault is opened with a separate instance of Obsidian. Each Vault can have its unique app settings and plug-ins. Useful if you have distinct/unrelated projects or "data spaces" requiring different workflows and data relations.
See More
Top
Con
iOS version works only with icloud
Does not work with other cloud folders.
See More
Top
Pro
In-line tagging
Ability to tag-as-you-write and find each occurrence of a tag in the entire vault makes it very easy to organize and retrieve notes. Supports nested tags.
See More
Top
Con
Needs to be polished
They still need time to fix some bugs.
See More
Top
Pro
Infinite panes, split panes, lock panes
In Obsidian, pane = window = note = page Obsidian allows you to open as many notes as you can fit concurrently in your screen. You can split a pane horizontally/vertically. You can lock/link panes so they scroll in sync, useful for and edit & preview modes.
See More
Top
Con
V1.0 release is terrible
Don't download unless you can't find pre 1.0 version.
See More
Top
Pro
Functionality extensions with a growing number of plugins
Also open for anyone to develop their own extensions/plugins.
See More
Top
Pro
Daily Notes with template
Daily Notes plug-in, when clicked, generates a new note with the current date. Great for journaling and reduces friction in your writing habit. You can create a custom template for your Daily Note.
See More
Top
Pro
Helps visualize personal knowledge in ways nothing else allows
The Graph view is more than an aesthetic gizmo. It allows you to grasp and recognise clusters of information, follow branches and easily filter out what you don't want to see. The "animate" option shows how your notes and links have grown organically. With a bit of tweaking to the visuals and the proper theme, your graph might even start to look like a disturbingly "alive", eerie thing.
See More
Top
Pro
Random note
A plugin that, when clicked, surfaces a random note from your vault.
See More
Top
Pro
Support for tags
See More
Top
Pro
Readable as it hides the [[ ]] around links when in Preview mode
This is a big difference, as having to read through long-form texts laden with [[links]] gives friction.
See More
Top
Pro
Slides for giving presentations from within Obsidian
Easily turn your notes into simple yet sleek powerpoint-style presentations by enabling the Slides plugin and adding the --- separator.
See More
Top
Pro
Markdown rather than outline/blocks
See More
Top
Pro
Keyboard shortcuts, Vim key bindings
Hotkeys can be customized in settings. Can switch on or off Vim key bindings in the editor settings.
See More
Top
Pro
Great onboarding experience
The onboarding consists of well-written help documentation (saved as a vault) served in small chunks and organized systematically so that you become familiar with all its features as well as get hands-on experience in real time.
See More
Top
Pro
Community of developers building themes and plug-ins
Due to the tool being very developer-friendly, there are tons of cool developments being made to it by 3rd party devs.
See More
Top
Pro
Page previews on hover
When you hover on an internal [[link]], you get to preview the note without opening it on a new pane. Page preview plugin must be enabled.
See More
Top
Pro
Intuitive and easy to use with an excellent help system built-in
The app doesn't frustrate the user - the built-in help is excellent.
See More
Top
Pro
Embedding attachments, such as PDF
Variety of file formats are directly embedded in the markdown preview, e.g. markdown, image, audio, video and PDF files.
See More
Top
Pro
Exporting as PDF
Allows exporting your markdown files as PDFs rendered with all of your plugins.
See More
Top
Pro
Calendar
Daily and Weekly notes with Calendar Plugin.
See More
Top
Pro
Graph view
A pretty, alternative way to represent links between your notes.
See More
Top
Pro
Multiple cursors
A feature unseen in other tools. From the help doc, "This can be useful when modifying a lot of lines in the same way, for example putting - at the beginning of multiple lines to turn them into a list, or appending [[ to a series of links you’ve copied from elsewhere."
See More
Top
Pro
Can copy search results and paste as lists and/or links in a new or existing note
See More
Top
Pro
Advanced search
Supports extended searching by default. Community plugin called "Vantage" allows to make more advanced queries.
See More
Top
Pro
Git integration
Version Control for your vault with Obsidian Git plugin.
See More
Top
Pro
Aliases
Allows to refer to a note with multiple names.
See More
Top
Pro
Big and helpful community
There's a Discord server and a forum. Join the community!
See More
Top
Pro
Not locked to a provider
No lock-in to a certain company - just markdown files on disk.
See More
Top
Pro
Mindmaps
Available as a plugin.
See More
Top
Pro
Math
Uses MathJax.
See More
Top
Pro
Templates
Allows to create templates with built-in plugin. There's also powerful community plugin called "Templater".
See More
Top
Pro
Diagrams
Uses Mermaid.
See More
Top
Pro
Linking to blocks
You can link to a block - e.g.: paragraph, blockquote, heading.
See More
Top
Pro
Metadata
Add a custom metadata to a note with YAML front matter.
See More
Top
Pro
Sketching
With Excalidraw.
See More
Top
Pro
Academic citations
Supports Citations and provides inserting from Zotero.
See More
Top
Pro
SQL-like queries
Advanced queries for the data-obsessed with Dataview Plugin.
See More
Top
Pro
Workspaces
Saving and loading workspaces.
See More
Top
Pro
Built-in Audio Recorder
See More
Top
Pro
Folders and file level storage which is open to manage, does not lock navigation
With other options like notion, we can not see how the data is actually stored.
See More
Top
Pro
HTML Support
Use HTML in a note.
See More
Top
Pro
Incredible tool for PKM (Personal Knowledge Management) which allows anyone who has a computer and an internet connection to think better and create new insights
See More
Top
Pro
Helps with planning and organization.
Variety of planning and organization plugins, such as Kanban boards or Day Planner.
See More
Top
Pro
Supports importing from other tools
Supports importing from tools such as Notion, Evernote, OneNote, Apple Notes, Bear, Zkn3, TiddlyWiki 5, and Roam Research. Refer to Obsidian Help for more info.
See More
Top
Pro
Supports several languages
Translations are made by the community at GitHub repository.
See More
Top
Pro
Discord rich presence
Update your Discord status to show your friends what are you working on with Discord Rich Presence plugin.
See More
Top
Pro
Syntax highlighting for code blocks
See More
Top
Pro
Snapshots, file recovery, trash folder
See More
Top
Pro
Copy and paste images easily
When taking notes, you can just grab a print screen from your clipboard and paste into the notes without having to do any file management
See More
Specs
Platforms:
Windows, Linux, Mac, iOS, Android
API:
Beta
Collaborative:
Upcoming
Search:
Advanced
See All Specs
Hide
See All
Experiences
Free / paid
899
70
Haroopad
All
16
Experiences
Pros
10
Cons
5
Specs
Top
Pro
Very customizable
Haroopad has multiple available themes to choose from and new ones can be easily built with CSS.
See More
Top
Con
English translation is iffy
The software was initially developed in Korean for Korean users and later translated and ported to English. The translation to English has not been perfect and there may be some weird expressions and grammatical errors along the way.
See More
Top
Pro
Multiplatform support
Runs on Mac, Windows and Linux with 32-bit and 64-bit binary packages available.
See More
Top
Con
Documentation is in Korean
The official documentation is in Korean, so it may be a bit hard for non-Korean speakers to find their way around Haroopad.
See More
Top
Pro
Completely free
Haroopad is a free and open source Markdown Editor.
See More
Top
Con
Windows installer does not support easy admin installation
It can't request the necessary privileges to install to C:\Program Files.
See More
Top
Pro
Various publishing and export options
Haroopad can publish to Wordpress, Evernote, Tumblr and MediaWiki and export to EPub, ReStructured Text, RTF and PDF.
See More
Top
Con
Undo sometimes loses control about the selection
Select some text, select a formatting in the Markdown Syntax Helper view, undo.
See More
Top
Pro
Mathematical expressions support
Haroopad supports mathematical expressions through LaTeX and MathJax.
See More
Top
Con
Code pane is dark in default theme
Can be hard to read and a bit hard to find where to change it.
See More
Top
Pro
Supports MathJax
Mathematical equations can be exported to the browser by using MathJax, a JavaScript display engine with a lot of great features such as typography support and modular output.
See More
Top
Pro
Allows embedding content from a wide variety of sources
Content from YouTube, Twitter, Vimeo, Slideshare, Flickr, Instagram, Soundcloud, Wikipedia and Pastebin can be embedded in the document.
See More
Top
Pro
The Markdown flavor can be extended
Haroopad supports GitHub Markdown flavor out of the box. But the functionality can be extended to support additional Markdown features.
See More
Top
Pro
Vi key bindings
For people used ti vi/vim, Haroopad can be set up to be used with vi keybindings.
See More
Top
Pro
Dual License
GPL3 license is applied to the current version and will be applied in the future to meet the internal dual licensing scheme. Commercial use follows Apache license v2 (APLv2) for keeping the GPL license and non-commercial use under consideration.
See More
Specs
Platforms:
MacOS, Windows, Linux
License:
GPLv3
Languages:
Javascript
Export:
HTML; EPub; ReStructured Text; PDF; RTF
See All Specs
Hide
See All
Experiences
Free
93
15
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
typora
All
20
Experiences
Pros
14
Cons
5
Specs
Top
Pro
Live preview
Typora immediately renders what's typed on the screen in Markdown format. This helps users to have a better understanding of how their document is being formatted.
See More
Top
Con
No mobile (Android/iOS) apps
See More
Top
Pro
Hybrid interface
The editor and preview dual-pane setup typical of desktop Markdown editors are gone; instead, a singular interface makes for a WYSIWYG experience. This streamlines the workflow and encourages direct manipulation.
See More
Top
Con
In beta
Typora is still in beta and may be prone to changes or bugs.
See More
Top
Pro
Support for LaTeX expressions
It supports LaTeX expressions, with an easy-to-use MaxJax panel.
See More
Top
Con
Unusable image management
See More
Top
Pro
Syntax highlight for fenced codes
It supports GFM's code fences, with syntax highlight support for C/C++, java, etc.
See More
Top
Con
The immediate rendering of Markdown is hard on the eyes
Having Markdown immediately render causes text to jump into formatted text, which is distracting and hard on the eyes.
See More
Top
Pro
Custom theme support
Typora has clean yet beautiful built-in themes and allows for users to create new themes using CSS.
See More
Top
Con
No portable version (Windows)
You need admin rights on a managed Windows computer to install it. There currently is no portable version available.
See More
Top
Pro
Support for tables
It supports tables for Markdown Extra. And also provides a GUI to make it easy to insert and edit them.
See More
Top
Pro
Inline images
It won't display image like , But shows the image content inside the editor.
See More
Top
Pro
Free during beta
See More
Top
Pro
Shows table of contents for the document
It supports an outline for the document, by showing a table of contents on the left side of the screen.
See More
Top
Pro
Cross-platform
Currently works on Windows, Mac and Linux.
See More
Top
Pro
Natural typing experience
Editing in Markdown, either in WYSIWYG mode or in markdown code mode, feels natural. It never gets in the way.
See More
Top
Pro
Make charts and diagrams with Mermaid, FlowChart and Sequence
Use fenced code-blocks to render diagrams using syntax from Mermaid and FlowChart.js.
See More
Top
Pro
Sidebar with a list of files
You can open any folder in sidebar and see a list of other markdown files.
See More
Top
Pro
Syncs with iCloud
See More
Specs
Platforms:
Mac OSX; Windows; Linux
License:
Proprietary
Price:
$14.99
Export:
HTML; HTML (pure); PDF; Word; OpenOffice; RTF; Epub; LaTeX; Media Wiki; ReStructuredText; Textile; OPML
See All Specs
Hide
See All
Experiences
Get it
here
484
59
Stylo
All
4
Experiences
Pros
3
Cons
1
Top
Pro
Flexible styling using CSS
Markdown source styling is really flexible because the App relies on CSS.
See More
Top
Con
Pretty new
See More
Top
Pro
CSS style definitions editable inside the editor
There is no need for complicated theme manipulation steps to create a style, everything is right in the editor along with the Markdown source.
See More
Top
Pro
CommonMark support
CommonMark Markdown standard got a lot of traction lately and it's good to use an editor that conforms to it.
See More
Hide
9.99
1
0
Macchiato
All
4
Experiences
Pros
2
Cons
1
Specs
Top
Pro
Does not distract the user
Macchiato does not get in the way. It has a minimalist UI that highlights Markdown syntax.
See More
Top
Con
Software is somewhat expensive and there's no trial version to test it out
Macchiato costs $19.99 and offers no way of testing the software before buying.
See More
Top
Pro
Support for latest Mac OSX features
Macchiato supports Mac OSX features like fullscreen mode, auto-save and version history.
See More
Specs
Platforms:
MacOS
License:
Proprietary
Hide
$19.99
1
0
StackEdit
All
14
Experiences
Pros
9
Cons
4
Specs
Top
Pro
Works online and offline
StackEdit works within your browser. You need internet access to connect to the website, but once it's loaded, the site does not require an internet connection - you will be able to edit and save files locally. Additionally, you can use Fluid to turn it into a native desktop application.
See More
Top
Con
Saves files in browser's local storage
Local storage is limited and if the browser crashes the text can be lost.
See More
Top
Pro
Supports various Markdown flavors
Supports standard Markdown and Markdown Extra.
See More
Top
Con
Cannot be accessed while being offline
Even though the editor itself works offline, you need internet access to open the website and the editor.
See More
Top
Pro
Simple workflow
It is very easy to toggle between the preview and the editing windows. The black makes it a very focused writing environment. Of course it's possible to change that if needed.
See More
Top
Con
Lacks a good integrated spell checker
Uses the built-in browser spell checker which may not be as good as spell checkers other editors have. Depending on the browser, of course.
See More
Top
Pro
Great when in full-screen
See More
Top
Con
Publishing to GitHub requires giving write access to repos
In order to publish documents to GitHub, StackEdit requires writing access to your repos, something which many people may not be comfortable with.
See More
Top
Pro
No need to install additional software
StackEdit works directly from the browser, there's no need to install additional software as long as you have a web browser installed on your computer.
See More
Top
Pro
Real-time preview
The preview shows in a collapsible pane on the right hand side.
See More
Top
Pro
Instant publishing
StackEdit allows pushing a document directly to a list of publishing or file storage platforms or any SSH server.
See More
Top
Pro
Multiple export options
Can export to .txt, .html and .pdf.
See More
Top
Pro
Syncs via Dropbox and Drive
Files can be synchronized through Dropbox and Drive.
See More
Specs
Platforms:
MacOS, Linux, Windows
Export:
Text, HTML, PDF
Preview:
Live Preview
Sync:
Dropbox, Drive
See All Specs
Hide
See All
Experiences
Free
120
24
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
Byword 2
All
18
Experiences
Pros
13
Cons
4
Specs
Top
Pro
Great Markdown support without being intrusive
Byword de-emphasizes the syntax itself while emphasizing its effects. It appropriately adds style, like italic and bold, to text that's designated by markdown and dims the syntax so it does not get in the way of comprehension. Additionally, there are commonly used hotkeys (⌘b, ⌘i, etc) that can be used to apply style without having to know the syntax or having to type it out each time.
See More
Top
Con
No support for code blocks
I need my markdown editor to support code blocks like def foo(bar, baz): qux() This one does not.
See More
Top
Pro
Available for all Apple devices
Byword is available on a Mac, an iPhone and iPad.
See More
Top
Con
Publishing requires additional in-app purchase
The feature to publish Markdown files to web services costs an additional $5 of in-app purchase.
See More
Top
Pro
Extremely simple
Byword is as simple as Markdown editors can get. Even though Markdown itself is not hard, Byword offers assistance to make it even easier with very little configuration required. The UI is minimalistic and un-intrusive, the syntax auto-completion is excellent, and there are multiple small but helpful features that make writing Markdown with Byword a breeze.
See More
Top
Con
Expensive
See More
Top
Pro
Syncs using iCloud and Dropbox
Documents can be synced using iCloud or Dropbox from within the editor for use across all devices.
See More
Top
Con
Limited customizability
One of the things that makes Byword so easy to use is the fact that it needs very little setup and option-tweaking. However, that severely limits the ability to customize the editor itself. For example, there are only two themes available, a light one and a dark one.
See More
Top
Pro
Direct publishing to web platforms
Byword allows users to publish their markdown files directly to web platforms such as Wordpress, Tumblr, Blogger and even Evernote.
See More
Top
Pro
Word count support
Has a built-in word counter.
See More
Top
Pro
Multiple export options
You can export to HTML, PDF, RTF.
See More
Top
Pro
A dark theme is available
For people who enjoy working during the night, there's a dark theme available that reduces strain on the eyes.
See More
Top
Pro
Includes features that speed up writing
For example, while authoring a bulleted list hitting return automatically prepares a new bulleted line.
See More
Top
Pro
Live update support
Byword has a "Preview Markdown" option where it does exactly what it promises. It immediately compiles and displays the rendered Markdown file, making it easy for the user to understand how they are actually formatting their document.
See More
Top
Pro
Supports Multimarkdown
Byword supports all the table types in Multimarkdown including table captions. MathJax support is added via metadata at the beginning of file was well as support for various diagrams. Table of Contents is also supported.
See More
Top
Pro
Supports iCloud Drive and Handoff
One of the few (well, Ok, only for far) that has been updated for Yosemite features. Jan 2015.
See More
Top
Pro
Updated frequently
Byword gets frequent updates which add new features or fix existing bugs.
See More
Specs
Platforms:
MacOS, iOS
License:
Proprietary
Export:
HTML, PDF, RTF
Sync:
iCloud, Dropbox
Hide
See All
Experiences
$10.99
55
14
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
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