Closed as not planned
Description
it('diffs markdown (2)', () => {
const a =
'## AIMD generated content\n\nJust for fun, here is the same article scrambled using AIMD anti-AI detection techniques:';
const b =
"## AIMD generated content\n\nJust for fun, here is the same article scrambled using AIMD anti-AI detection techniques. If you're curious about building depth on related topics and establishing yourself as an authority, check out our detailed guide on [Understanding Topical Authority](https://aimd.app/blog/2023-12-26-revolutionizing-the-marketing-hierarchy-why-topical-authority-is-the-new-currency).";
const diff = diffSentences(a, b);
});
Produces:
[
{
count: 1,
added: undefined,
removed: true,
value: '## AIMD generated content\n' +
'\n' +
'Just for fun, here is the same article scrambled using AIMD anti-AI detection techniques:'
},
{
count: 4,
added: true,
removed: undefined,
value: '## AIMD generated content\n' +
'\n' +
"Just for fun, here is the same article scrambled using AIMD anti-AI detection techniques. If you're curious about building depth on related topics and establishing yourself as an authority, check out our detailed guide on [Understanding Topical Authority](https://aimd.app/blog/2023-12-26-revolutionizing-the-marketing-hierarchy-why-topical-authority-is-the-new-currency)."
}
]
It is not clear why ## AIMD generated content\n
is marked as removed.
Metadata
Metadata
Assignees
Labels
No labels