We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
YAMLで @config["epubmaker"]["foo"] で指定した値をepubmakerの@producer.params["foo"]で参照できるようにしたいです。
@config["epubmaker"]["foo"]
@producer.params["foo"]
@config["foo"]
@config[maker]["foo"]
挙動としてはa)の方が素直だけど、b)で上書きできるのは便利そうです。 ちなみにepubmakerじゃなくても同様。
The text was updated successfully, but these errors were encountered:
本当はparamsじゃなくてconfigにしてうまく統一できればよかった とこっそり思っていますが、 用途としてはどっちのほうがありえそうでしょう(いまいちケースがわからず)。
Sorry, something went wrong.
お、そうなんですね。ではReVIEW::Configureと統一する方向で考えてみます。 用途として分かりやすいところでは、EPUBでは拡張子を*.xhtmlにしたいけどWEBでは*.htmlにしたい、とかですね…。
*.xhtml
*.html
#540 マージを受けてほかに手を入れるところはあるかな。
たぶんこれで大丈夫そうです。閉じますね。
No branches or pull requests
YAMLで
@config["epubmaker"]["foo"]
で指定した値をepubmakerの@producer.params["foo"]
で参照できるようにしたいです。期待される挙動・優先度
@config["foo"]
が設定されていればそれを使い、設定されてなければ@config[maker]["foo"]
を使う@config[maker]["foo"]
が設定されていればそれを使い、設定されてなければ@config["foo"]
を使う挙動としてはa)の方が素直だけど、b)で上書きできるのは便利そうです。
ちなみにepubmakerじゃなくても同様。
The text was updated successfully, but these errors were encountered: