1. VNote
A note-taking application with both notes management and pleasant Markdown experience.
- Cross platform: Linux, Windows, and Mac;
- Simple, powerful, and efficient;
- Minimized gap between reading and editing Markdown;
1.1. Code Block Highlight
#include <iostream>
using namespace std;
int main()
{
string name = "VNote";
cout << name << endl;
return 0;
}