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
This will allow for adding more configuration fields in the future without breaking compatibility (it seems like some issues may be requesting this). However, this itself would be a breaking change; users would need to change from e.g.
let opts = ComrakParseOptions{smart:true
default_info_string:None,relaxed_tasklist_matching:true,}
to:
let opts = ComrakParseOptions{smart:true
default_info_string:None,relaxed_tasklist_matching:true,
..Default::default()}
The text was updated successfully, but these errors were encountered:
This will allow for adding more configuration fields in the future without breaking compatibility (it seems like some issues may be requesting this). However, this itself would be a breaking change; users would need to change from e.g.
to:
The text was updated successfully, but these errors were encountered: