mirror of
https://github.com/marktext/marktext.git
synced 2025-05-02 03:11:29 +08:00

* Removed the space in 'Mark Text' (#2763) Literally just replaced all occurances of 'Mark Text' with 'MarkText' using sed. This is directly related to #2763. * Revert changes to .github directory Reverted changelog etc. * Added `cs` alias for `csharp` in code blocks (Fixes #2760) * Added error handler in the renderer process (should fix #2758) The `src/muya/lib/contentState/clickCtrl.js` file will now return if `document.querySelector` fails to find an element.
17 lines
529 B
Markdown
17 lines
529 B
Markdown
# Portable Mode
|
|
|
|
MarkText stores all user configuration inside the [application data directory](APPLICATION_DATA_DIRECTORY.md) that can be changed with `--user-data-dir` command-line flag.
|
|
|
|
## Linux and Windows
|
|
|
|
On Linux and Windows you can also create a directory called `marktext-user-data` to save all user data inside the directory. Like:
|
|
|
|
```
|
|
marktext-portable/
|
|
├── marktext (Linux) or MarkText.exe (Windows)
|
|
├── marktext-user-data/
|
|
├── resources/
|
|
├── THIRD-PARTY-LICENSES.txt
|
|
└── ...
|
|
```
|