https://github.com/rhiokim/tistory2markdown
tistory backup data migrate to markdown
https://github.com/rhiokim/tistory2markdown
Last synced: 9 months ago
JSON representation
tistory backup data migrate to markdown
- Host: GitHub
- URL: https://github.com/rhiokim/tistory2markdown
- Owner: rhiokim
- Created: 2012-01-19T12:32:47.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-01-20T16:16:26.000Z (almost 14 years ago)
- Last Synced: 2025-01-01T21:24:51.809Z (11 months ago)
- Language: JavaScript
- Homepage:
- Size: 160 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
#intro
tistory 블로그 백업 데이터를 markdown 으로 변환하는 node.js 모듈이다.
#install
```
git clone git@github.com:rhiokim/tistory2markdown.git
git submodule update --init
```
#usage modules
* xml2js
* htmlparser
* datetime
**install npm module**
```
//tistory xml 데이터를 json 으로 컨버팅하기 위한 모듈
npm install xml2js
//html 파싱 모듈
npm install htmlparser
//date 포맷팅 모듈
npm install datetime
```
#usage
```js
var t2md = require('../');
t2md('./Tistory-Data.xml', 'Author');
```