Skip to content

Commit

Permalink
restructure export dict
Browse files Browse the repository at this point in the history
  • Loading branch information
Sup2point0 authored Mar 26, 2024
1 parent 4c182bd commit df61f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quarkdown/quarkify.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def extract_quarks(text: str) -> dict:
except AssertionError:
pass

return {"content": text, **flags}
return {**flags, "content": text}


def check_open(ctx: list[dict], part: str, token: dict, flags: dict):
Expand Down

0 comments on commit df61f9a

Please sign in to comment.