Files
owlen/crates/owlen-cli
vikingowl 498e6e61b6 feat(tui): add markdown rendering support and toggle command
- Introduce new `owlen-markdown` crate that converts Markdown strings to `ratatui::Text` with headings, lists, bold/italic, and inline code.
- Add `render_markdown` config option (default true) and expose it via `app.render_markdown_enabled()`.
- Implement `:markdown [on|off]` command to toggle markdown rendering.
- Update help overlay to document the new markdown toggle.
- Adjust UI rendering to conditionally apply markdown styling based on the markdown flag and code mode.
- Wire the new crate into `owlen-tui` Cargo.toml.
2025-10-14 01:35:13 +02:00
..

Owlen CLI

This crate is the command-line entry point for the Owlen application.

It is responsible for:

  • Parsing command-line arguments.
  • Loading the configuration.
  • Initializing the providers.
  • Starting the owlen-tui application.

There are two binaries:

  • owlen: The main chat application.
  • owlen-code: A specialized version for code-related tasks.