https://github.com/adamcsk1/memos-markdown-file-importer
An unofficial markdown file import for the memos note app.
https://github.com/adamcsk1/memos-markdown-file-importer
memos nodejs
Last synced: 3 months ago
JSON representation
An unofficial markdown file import for the memos note app.
- Host: GitHub
- URL: https://github.com/adamcsk1/memos-markdown-file-importer
- Owner: adamcsk1
- License: mit
- Created: 2025-06-20T20:10:38.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-06-21T18:20:26.000Z (4 months ago)
- Last Synced: 2025-06-21T19:27:43.037Z (4 months ago)
- Topics: memos, nodejs
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Memos markdown file importer
An unofficial markdown file import script for the memos note app.
# Usage
Set up the parameters in the root folder config.json and then run the `npm start` command.
# Config parameters
**dataFolder:** The markdown file source folder for the import.
**baseUrl:** Your memos instance base path.
**token:** The generated api token for the API access.
**addTagsByPath:** Generate tags from the file paths in camel case format. The source folder and the file name are not included.
**changeFirstHeadingLevelTo:** Decrease the first line heading to the selected level.
# Example config:
```
{
"dataFolder": "./tmp/",
"baseUrl": "https://mymemos.com",
"token": "abcdefg",
"addTagsByPath": true,
"changeFirstHeadingLevelTo": 3
}
```