2013年2月2日土曜日

txt2tags

インストール

実行方法
python txt2tags
  • Windowsの場合は txt2tags ファイルを txt2tags.py と改名して、PATHの通ったディレクトリに置けば直接実行可能となる
  • Linuxの場合はtxt2tagsに実行権限を与え、/usr/bin にコピーすれば実行可能となる

Emacs の tag
  1. extras/txt2tags-mode.el を emacs/site-lisp にコピーする
  2. .emacs に以下を追記する
    (add-to-list 'load-path "~/projetos/txt2tags/2.x/")
    (setq auto-mode-alist (append (list
      '("\\.t2t$" . t2t-mode)
      )
      (if (boundp 'auto-mode-alist) auto-mode-alist)
    ))
    (autoload 't2t-mode "txt2tags-mode" "Txt2tags Mode" t)
    

書き方
  • 最初の 3 行は header として扱われるので注意
  • 推奨は
    • 1 行目: タイトル
    • 2 行目: 筆者
    • 3 行目: 日付、バージョン
    Title
    Author
    Data %%date(%Y/%m/%d)
    = Title level 1 =
    + Numberd titile level 1 +
    ++ Numberd title level 2 ++
    
    == Title level 2 ==
    
    === Title level 3 ===
    
    % comment
    
    **bold** and //italic//
    
    = Lists =
    == list ==
    - List 1
    - List 2
    - list 2.1
    
    
    == Numberd list ==
    + List 1
    + List 2
    
    
    == Definition list ==
    : Definition list
    This is definition list
    
    
    = Table =
    | cell1 | cell2 | cell3 |
    | cell4 | cell5 ||
    | cell6 | cell7 | cell8 |
    

0 件のコメント:

コメントを投稿