# Create the file and set the content with UTF-8 encoding without BOM $utf8NoBOM = New-Object System.Text.UTF8Encoding $false $streamWriter = New-Object System.IO.StreamWriter($filePath, $false, $utf8NoBOM)
# Write the content to the file @" --- title: MyArticle date: $(Get-Date -Format "yyyy-MM-dd HH:mm:ss") tags: Workflow categories: Workflow ---
Please help me improve the formatting of the following Markdown document:
## Content
Start writing the content of your article here. "@ | ForEach-Object { $streamWriter.WriteLine($_) }
# Close the StreamWriter $streamWriter.Close()
常用prompt
优化Markdown排版
1
Please help me improve the formatting of the following Markdown document:
一些bug
推送更新时报错Failed to connect to github.com port 443 after 21122 ms