Guest User

Untitled

a guest
Feb 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function Convert-Rst2Markdown{
  2. Param (
  3. [string]$Path = "./"
  4. )
  5. Get-ChildItem -Path $Path -Recurse -Force -Include *.rst |
  6. %{
  7. $md = $_.Directory.FullName + "\" + $_.Basename + ".md";
  8. pandoc $_.Fullname -f rst -t markdown -o $md
  9. }
  10. }
Add Comment
Please, Sign In to add comment