remend@1.3.0

build-with-groq/g1remend@1.3.0Mar 17, 2026

AI Summary

Added opt-in KaTeX completion and improved strikethrough rendering accuracy by escaping single tildes between word characters to prevent false matches like currency symbols.

Key Highlights

  • Added opt-in inline KaTeX completion (`$formula` → `$formula$`)
  • Fixed false strikethrough rendering for currency symbols (e.g., `20~25°C`)
  • Added `singleTilde` option to control tilde escaping behavior

New Features

  • `inlineKatex` option for KaTeX completion
  • `singleTilde` option to escape single tildes between words

Full Release Notes

### Minor Changes

-   e50b0c4: Add opt-in inline KaTeX completion (`$formula` → `$formula$`) via a new `inlineKatex` option that defaults to `false` to avoid ambiguity with currency symbols. Also fixes block KaTeX completion when streaming produces a partial closing `$`.
-   716a5f0: Escape single `~` between word characters to prevent false strikethrough rendering (e.g. `20~25°C` no longer renders as strikethrough). Adds a new `singleTilde` option (enabled by default) that can be disabled via `{ singleTilde: false }`.