You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
memos/plugin/markdown
Steven 68c17469a3 fix(markdown): fix UTF-8 truncation for CJK characters in snippet generation
The truncateAtWord function was slicing strings by byte position instead of
character position. When truncating text with multi-byte UTF-8 characters
(like CJK), this could cut in the middle of a character, creating invalid
UTF-8 and causing gRPC marshaling errors.

Fixed by converting to runes before truncation to ensure we always cut at
proper character boundaries. Added test cases for CJK characters.

Fixes #5276

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2 months ago
..
ast chore: remove unused syntax 3 months ago
extensions chore: remove unused syntax 3 months ago
parser fix: add period to comment for golangci-lint compliance 2 months ago
renderer chore: remove unused syntax 3 months ago
markdown.go fix(markdown): fix UTF-8 truncation for CJK characters in snippet generation 2 months ago
markdown_test.go fix(markdown): fix UTF-8 truncation for CJK characters in snippet generation 2 months ago