リクエストURL
https://api.github.com/markdown/raw
ヘッダ
ヘッダ | 値 |
---|---|
Content-Type | text/plain |
あとはデータにマークダウンを渡してPOSTするだけ。
curlを使った例
curl -X POST https://api.github.com/markdown/raw -H 'Content-Type: text/plain' -d '# Hello World'
# => <h1>
# <a id="user-content-hello-world" class="anchor" href="#hello-world" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Hello World</h1>
Golangを使った例
【Go】GitHub Markdown APIを叩いてみる - Qiita
おわりに
データをJSON形式で渡してオプションを指定する方法もあるけど、正直上記のもので十分なので今回は割愛。
知りたい方は下記参考リンクを参照。