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
As discussed in the comments of #521, I would love to be able to set the self-contained-html option in the INI file.
I guess the fix would only require the addition of this piece of code:
parser.addini(
"self-contained-html",
type="bool",
default=False,
help="create a self-contained html file.",
)
The question would be:
Should the INI option name be identical to the command-line option (self-contained-html) ?
or should the dash be replaced by underscore (self_contained_html) ?
The text was updated successfully, but these errors were encountered:
As discussed in the comments of #521, I would love to be able to set the
self-contained-html
option in the INI file.I guess the fix would only require the addition of this piece of code:
The question would be:
Should the INI option name be identical to the command-line option (
self-contained-html
) ?or should the dash be replaced by underscore (
self_contained_html
) ?The text was updated successfully, but these errors were encountered: