2
2

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.

gollum でカスタム CSS

Last updated at Posted at 2014-04-07

概要

デフォルトのスタイルをベースに、ちょこっといじりたい時などに。

変更点

(カレントディレクトリを gollum と仮定)

まず custom.css を用意し、lib/gollum/public/gollum/custom.css に配置する。

例えば、エディタの高さを倍にするなら下記の様に。

lib/gollum/public/gollum/custom.css
#gollum-editor textarea {
  height: 40em;
}

※他の CSS が置かれている lib/gollum/public/gollum/css/ ではないので注意。

追記: コミットすれば wiki のデータのルートにも置ける。

次に、カスタム CSS を有効化する。

gollum の起動オプションとして --css を付けるか、設定ファイルで

config.rb
wiki_options = {
  :css => true,
}
Precious::App.set(:wiki_options, wiki_options)

などとする。これでOK

ちなみに、起動オプションと wiki の設定の関係は bin/gollum を見るといい。Ruby が分からなくても理解できた。

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?