Skip to content

Instantly share code, notes, and snippets.

@mfaux
Created January 24, 2020 08:25
Show Gist options
  • Save mfaux/9b845196d8da7fa2cf63a66c27c27434 to your computer and use it in GitHub Desktop.
Save mfaux/9b845196d8da7fa2cf63a66c27c27434 to your computer and use it in GitHub Desktop.
Prepends markdown files with frontmatter for docusaurus
Get-ChildItem -recurse -Filter *.md | `
Foreach-Object{
$content = Get-Content $_.FullName
$frontmatter = New-Object -TypeName "System.Text.StringBuilder"
[void]$frontmatter.AppendLine("---");
[void]$frontmatter.AppendLine( "id: $($_.basename.ToLower()) ");
[void]$frontmatter.AppendLine("---");
Set-Content $_.FullName -value $frontmatter.ToString(), $content
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment