-
Notifications
You must be signed in to change notification settings - Fork 216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
allow minicolumn nesting #1558
allow minicolumn nesting #1558
Conversation
usage: ``` ///note{ //emlist{ p "Hello, world!" //} * foo * bar ///} ```
すごそう。
という書き方ができる、という理解でよいのでしょうか。 |
そういう書き方です。parse自体は通るのですが、
というのが課題です。 |
LATEXBuilderのRe:VIEW 2.0対応は入れました。 |
とりあえず試した限りだと空行増えるというのがはっきりとわかりませんでした。 |
lib/review/latexbuilder.rb
Outdated
end | ||
else | ||
if caption.present? | ||
print "[#{compile_inline(caption)}]" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
なぜかこっちが使われてしまうのはなんだろう…
ちょっと今は時間がないので後で確認。
あと、コードにインデントがついてないですね。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
インデントはrubocopを走らせたら自動修正されました…
テストとずれていたのは、captionblockの始まりと終わりに不要な空行が入るパターンだったので、それらはテストの方を修正することにしました…。 |
大枠はよさそうなので、マージいただきましょうかね。 |
あ、わかりました。captionblockをオーバライドするreview-ext.rbを使っていたのですが、captionblockメソッドは存在するものの、latexbuilderにおけるminicolumn類はcommon_block_begin、common_block_endを使って表現するようになったので、上書きしたいならそちらを使うようにしないといけない、ということですね。 |
了解です、マージしてみます |
#1512 の代替案です