Fix missing footnotes option#108
Conversation
Reviewer's GuideIntroduce a new 'footnotes' flag to the Options struct for converting numeric references to footnotes, integrate it into the processing pipeline (with defaults and clippy lint), and update the README example and documentation to include this new option. Entity relationship diagram for Options usage in processing functionserDiagram
OPTIONS ||--o{ PROCESS_STREAM_INNER : provides
OPTIONS ||--o{ PROCESS_STREAM : provides
OPTIONS ||--o{ PROCESS_STREAM_NO_WRAP : provides
OPTIONS {
bool wrap
bool ellipsis
bool fences
bool footnotes
}
Class diagram for updated Options structclassDiagram
class Options {
bool wrap
bool ellipsis
bool fences
bool footnotes
}
Class diagram for process_stream_inner function updateclassDiagram
class Options {
bool wrap
bool ellipsis
bool fences
bool footnotes
}
class process_stream_inner {
+Vec<String> process_stream_inner(lines: &[String], opts: Options)
}
Options <.. process_stream_inner : uses
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing Touches🧪 Generate unit tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
* Add orphan fence specifier handling * Fix orphan specifier handling * Refactor options and extend fences * Update fences docs and tests * Fix spelling and fence tests * Add footnotes option (#108)
Summary
footnotesfield toOptionsTesting
make fmtmake lintmake testmake markdownlintmake nixiehttps://chatgpt.com/codex/tasks/task_e_687cd1c7cff88322956f921dd318555a
Summary by Sourcery
Enable footnote conversion through a new Option field, integrate it into the processing pipeline, and refresh documentation accordingly.
New Features:
Enhancements: