5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Pandoc依存症になる

Posted at

様々なフォーマット形式に対応したドキュメント変換ツール、**Pandoc**がめちゃくちゃ使えるヤツなのでメモ

#Pandocのインストール
brewで簡単にインストールできる

$ brew install pandoc

#基本の使い方

Texファイルinput.texをマークダウンoutput.mdへ変換する場合

$ pandoc -o output.md input.tex

-oはアウトプットファイルを指定する
だいたいは拡張子からフォーマットを自動的に取得してくれる
あえて設定したいときは、f/-fromで入力フォーマットを、-t/-toで出力フォーマットを設定することができる

#Pandocにおけるマークダウン
基本的な使い方を含め、日本語ドキュメントがわりとしっかりしているので、使い方で困ることはあまりないと思う。
Pandoc ユーザーズガイド 日本語版

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?