-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvert-to-markdown.ps1
37 lines (24 loc) · 1.57 KB
/
convert-to-markdown.ps1
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
param([switch]$gist)
(Get-Content .\MvcMovieSaturn-unit-tested-tutorial.ps1 -Raw) -replace '(?s)# IGNORE-START.*?# IGNORE-END', '' | Set-Content pass-1.ps1
(Get-Content .\pass-1.ps1 -Raw) -replace "\`$file = '(.*?)'", ("`n---`n" + 'File: `$1`') | Set-Content pass-1.ps1
(Get-Content .\pass-1.ps1 -Raw) -replace '(?s)\$original_text = @"(.*?)"@', ("Original text: `n" + '```$1```') | Set-Content pass-1.ps1
(Get-Content .\pass-1.ps1 -Raw) -replace '(?s)\$replacement_text = @"(.*?)"@', ("Replacement text: `n" + '```$1```') | Set-Content pass-1.ps1
# (Get-Content .\pass-1.ps1 -Raw) -replace ('(?s)^@"(.*?)"@ \| ' + "Set-Content '(.*?)'"), ('File: `$2`' + "`n`n" + '```$1```') | Set-Content pass-1.ps1
# (Get-Content .\pass-1.ps1 -Raw) -replace ('(?s)@"(.*?)"@ \| ' + "Set-Content '(.*?)'"), ('File: `$2`' + "`n`n" + '```$1```') | Set-Content pass-1.ps1
(Get-Content .\pass-1.ps1 -Raw) -replace ('(?sm)^@"(.*?)"@ \| ' + "Set-Content '(.*?)'"), ('File: `$2`' + "`n`n" + '```$1```') | Set-Content pass-1.ps1
(Get-Content .\pass-1.ps1) | ForEach-Object {
if ($_ -match '^# ') { $_ -replace '^# ', '' }
elseif ($_ -match '^#') { $_ -replace '^#', '' }
elseif ($_ -match "^cmt '") { $_ -replace "^cmt '(.*)'", '$1' }
elseif ($_ -match '^cmt "') { $_ -replace '^cmt "(.*)"', '$1' }
elseif ($_ -match '^Edit \$file -Replacing') { }
elseif ($_ -match 'IGNORE-LINE-FOR-MARKDOWN') { }
else { $_ }
} | Set-Content MvcMovieSaturnTutorial.md
if ($gist)
{
$result = gh gist create MvcMovieSaturnTutorial.md
Start-Process $result
}
Remove-Item .\pass-1.ps1