Skip to content

Instantly share code, notes, and snippets.

@yoshitsugu
Last active July 28, 2016 05:05
Show Gist options
  • Select an option

  • Save yoshitsugu/8823094 to your computer and use it in GitHub Desktop.

Select an option

Save yoshitsugu/8823094 to your computer and use it in GitHub Desktop.
Ruby Toolbox -- Wiki Apps

Wiki Appsまとめ

Gollum

  • https://github.com/gollum/gollum
  • gitリポジトリからwikiを構成する
  • MarkDown, GitHub Flavored Markdown, Orgなどいろいろな記法が使える
    • 特にEmacs使う人はOrgが使えるのがありがたい

セットアップ

$ gem install gollum
$ bundle install
$ gollum
  • これで http://localhost:4567 にアクセスすればwikiを使い始められる。

git-wiki

  • https://github.com/sr/git-wiki
  • sinatra+gitという構成はGollumと似ている
  • gollumに比べてかなりsimpleな作りになってる
  • Mark Down しか対応していないっぽい

セットアップ

mkdir ~/wiki && (cd ~/wiki && git init) && ./run.ru -sthin -p4567

Instiki

  • https://github.com/parasew/instiki
  • 上記2つが履歴管理にGitを使っているのに対し、こちらはDB(デフォルトではsqlite)に保存している
  • Mark Down, Wiki Syntaxが使える。itex による数式表示にも対応
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment