You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def initialize(strategy)
@strategy = strategy
## commands which do not parse block lines in compiler
@non_parsed_commands = %i[embed texequation graph]
## to decide escaping/non-escaping for text
@command_name_stack = []
end
で入れているので、不要な気がします。228行目がなければ、overrideする側は
def initialize(strategy)
super
## commands which do not parse block lines in compiler
@non_parsed_commands = %i[embed texequation graph texeqnarray]
end
compiler.rb の 228行目 で
@non_parsed_commands = %i[embed texequation graph]
としていますが、
で入れているので、不要な気がします。228行目がなければ、overrideする側は
だけで済むような気がします。
Originally posted by @oipest in #1498 (comment)
The text was updated successfully, but these errors were encountered: