Skip to content

Commit 8314d0b

Browse files
author
Peng Zhao
committed
publised on CRAN
1 parent a0cc8d2 commit 8314d0b

File tree

1 file changed

+23
-10
lines changed

1 file changed

+23
-10
lines changed

readme.md

+23-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,30 @@
1-
# R package mindr: convert markdown (.md) or rmarkdown (.Rmd) files to mind maps, and vice versa
1+
# mindr: an R package which convert smarkdown (.md) or rmarkdown (.Rmd) files to mind maps, and vice versa
2+
3+
4+
## Introduction
5+
6+
mindr is an R package which convert smarkdown (.md) or rmarkdown (.Rmd) files to mind maps (.mm), and vice versa. Mind map files (.mm) can be opened by or imported to common mindmap software such as ['FreeMind'](http://freemind.sourceforge.net/wiki/index.php/Main_Page)and ['XMind'](http://www.xmind.net).
7+
8+
If your are a markdown or rmarkdown or bookdown or blogdown user, mindr can convert your .md or .Rmd files into mind maps easily. You can write a mind map with markdown syntax and use mindr to convert it into an .mm mind map.
9+
10+
If you are a mind map user, you can export your mind map into an .mm file and use mindr to convert it into a markdown file as an outline of your document or book.
211

312
## Quick start
413

514
### Installation
615

7-
```
16+
```R
17+
# stable version:
18+
install.packages("mindr")
19+
# or development version:
820
devtools::install_github("pzhaonet/mindr")
921
```
1022

1123
### Convert (a) markdown file(s) into a mindmap
1224

1325
Create a folder named `mm` in the working directory (`getwd()`), and drop some markdown or rmarkdown files into `mm/`. Run:
1426

15-
```
27+
```R
1628
mindr::md2mm()
1729
```
1830

@@ -24,7 +36,7 @@ Plenty of cross-platform and online mindmap software suits are available (see [t
2436

2537
Drop some mindmap files (.mm) into `mm/`. Run:
2638

27-
```
39+
```R
2840
mindr::mm2md()
2941
```
3042

@@ -34,7 +46,7 @@ then you will get a `mm.md` markdown file.
3446

3547
Drop some markdown or rmarkdown files into `mm/`. Run:
3648

37-
```
49+
```R
3850
mindr::outline()
3951
```
4052

@@ -61,11 +73,12 @@ Still being developed. Feel free to give your feedback to me!
6173

6274
## Updates
6375

64-
- 2017-06-02. **Version 1.0.0**. Backup existing files before overwritten. Submitted to CRAN.
65-
- 2017-05-21. **Version 0.2.0**. Rename functions.
66-
- 2017-05-21. **Version 0.1.0**. Bidirectional! Now mind maps can be converted to markdown.
67-
- 2017-05-20. **Version 0.0.1**. Can Save the outline.
68-
- 2017-05-19. **Version 0.0.0**. A very preliminary version.
76+
- 2017-06-19: **v1.0.4**. Released on [CRAN](https://cran.r-project.org/web/packages/mindr)!
77+
- 2017-06-02. **V1.0.0**. Backup existing files before overwritten. Submitted to CRAN.
78+
- 2017-05-21. **V0.2.0**. Rename functions.
79+
- 2017-05-21. **V0.1.0**. Bidirectional! Now mind maps can be converted to markdown.
80+
- 2017-05-20. **V0.0.1**. Can Save the outline.
81+
- 2017-05-19. **V0.0.0**. A very preliminary version.
6982

7083
# License
7184

0 commit comments

Comments
 (0)