Skip to content

fix(ssr): insert titleTemplate title literally - #197

Merged
JosunLP merged 1 commit into
devfrom
fix/177-titletemplate-literal
Jul 6, 2026
Merged

fix(ssr): insert titleTemplate title literally#197
JosunLP merged 1 commit into
devfrom
fix/177-titletemplate-literal

Conversation

@JosunLP

@JosunLP JosunLP commented Jul 6, 2026

Copy link
Copy Markdown
Collaborator

Summary

Fixes #177 (Low; correctness — not exploitable).

titleTemplate was applied with state.titleTemplate.replace(/%s/g, state.title). Because the title is the replacement string, special replacement patterns ($&, $1, $`, $') in the title were interpreted by String.prototype.replace and mangled the output — e.g. a page titled Q&A $& more rendered incorrectly.

Fix

Use a replacer function (() => state.title) so the title is inserted literally. Output is still escapeText'd as before.

Verification

  • New test: a title containing $& renders literally under a %s | Acme template. Fails on the pre-fix code.
  • ssr-runtime suite: 107 pass / 0 fail. tsc --noEmit clean.

🤖 Generated with Claude Code

titleTemplate applied via state.titleTemplate.replace(/%s/g, state.title)
used the title as the replacement string, so special patterns ($&, $1,
$`, $') in the title were interpreted by String.prototype.replace and
mangled the output (e.g. a page titled 'Q&A $& more'). Switched to a
replacer function so the title is inserted verbatim.

Fixes #177

Co-Authored-By: Claude Fable 5 <[email protected]>
@coderabbitai

coderabbitai Bot commented Jul 6, 2026

Copy link
Copy Markdown

Important

Review skipped

Auto reviews are disabled on base/target branches other than the default branch.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: d19bb08b-b5db-4197-b1f5-3fe6078dea6f

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/177-titletemplate-literal

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@github-actions github-actions Bot added tests Chenges to the tests ssr Changes to the ssr module labels Jul 6, 2026
@JosunLP
JosunLP merged commit dfea40f into dev Jul 6, 2026
9 checks passed
@JosunLP
JosunLP deleted the fix/177-titletemplate-literal branch July 6, 2026 19:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ssr Changes to the ssr module tests Chenges to the tests

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant