You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+23-10
Original file line number
Diff line number
Diff 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.
2
11
3
12
## Quick start
4
13
5
14
### Installation
6
15
7
-
```
16
+
```R
17
+
# stable version:
18
+
install.packages("mindr")
19
+
# or development version:
8
20
devtools::install_github("pzhaonet/mindr")
9
21
```
10
22
11
23
### Convert (a) markdown file(s) into a mindmap
12
24
13
25
Create a folder named `mm` in the working directory (`getwd()`), and drop some markdown or rmarkdown files into `mm/`. Run:
14
26
15
-
```
27
+
```R
16
28
mindr::md2mm()
17
29
```
18
30
@@ -24,7 +36,7 @@ Plenty of cross-platform and online mindmap software suits are available (see [t
24
36
25
37
Drop some mindmap files (.mm) into `mm/`. Run:
26
38
27
-
```
39
+
```R
28
40
mindr::mm2md()
29
41
```
30
42
@@ -34,7 +46,7 @@ then you will get a `mm.md` markdown file.
34
46
35
47
Drop some markdown or rmarkdown files into `mm/`. Run:
36
48
37
-
```
49
+
```R
38
50
mindr::outline()
39
51
```
40
52
@@ -61,11 +73,12 @@ Still being developed. Feel free to give your feedback to me!
61
73
62
74
## Updates
63
75
64
-
- 2017-06-02. **Version 1.0.0**. Backup existing files before overwritten. Submitted to CRAN.
0 commit comments