-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwritage-notes
73 lines (39 loc) · 1.35 KB
/
writage-notes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Writage: Markdown plug-in for Word
By Tycen Hopkins
Get [Writage](http://www.writage.com/)
In the past I’ve used it to convert big complicated docs like this in 15-30 minutes:
<https://docs.microsoft.com/en-us/azure/architecture/aws-professional/services>
Once it’s installed you can save as markdown files from word docs. Once it’s spit out there’s clean-up tasks that still need to be done after export:
1. Convert heading formats from the underline formats:
>
> My Heading 1
> ===========
>
> My Heading 2
> \------------------
>
> To the \# format:
> \# My Heading 1
> \#\# My Heading 2
2. Images get generated with random guids as filenames and without alt text, so:

becomes something like :

3. Code samples formatting needs to be fixed. Copy the code sample from the word
doc and paste to the markdown code, surrounding it with the special code block
characters (note these are not just single quotes, but the fancy curly quote
\`\`\`):
\`\`\`
myFunction(){
x=x;
}
\`\`\`
4. Adding the YML metadata to the file.
You can also open markdown files in word, although you’ll lose some of the
markdown formatting features if you do so.
\-Tycen