Bryan A. Jones
Bryan A. Jones
Per the [docs](https://axodotdev.github.io/cargo-dist/book/workspaces/simple-guide.html#release-notes), `dist` will use a changelog/releases file when producing a release. I've verified that `parse-changelog` applied to [my changelog](https://github.com/bjones1/CodeChat_Editor/blob/main/docs/changelog.md) produces correct output. I've also specified its location in...
This PR addresses several deprecations and lints reported by Android Studio. It also fixes compilation problems I had by adding a missing include directory.
This fixes many lints produced by clippy. The remaining lints need input from the dev team to resolve, so I plan them for the PR following this one.
This fixes a crash when a non-breaking space is in the input text. Looking at the implementation of `is_list_word`, it will always exit when it encounters whitespace; the debug assertion...
I'd like to add an option on how Markdown headings are formatted: either as ATX (the usual): ```Markdown # Level 1 heading ## Level 2 heading ``` or setext (the...