Skip to content

Commit a708be6

Browse files
authored
Merge pull request #2185 from cardstack/fix-marked-encoding-bug
use pure js hash function for marked code block generation
2 parents 2cfb6f1 + a105d35 commit a708be6

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

packages/runtime-common/marked-sync.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { marked } from 'marked';
22
import { sanitizeHtml } from './dompurify-runtime';
3-
import { md5 } from 'super-fast-md5';
3+
import { simpleHash } from '.';
44

55
const CODEBLOCK_KEY_PREFIX = 'codeblock_';
66

@@ -12,7 +12,7 @@ export function markedSync(markdown: string) {
1212
// markdown, please use the `CodeBlock` modifier to render the
1313
// markdown.
1414
code(code, language = '') {
15-
let id = `${CODEBLOCK_KEY_PREFIX}${md5(Date.now() + language + code)}`;
15+
let id = `${CODEBLOCK_KEY_PREFIX}${simpleHash(Date.now() + language + code)}`;
1616
// we pass the code thru using localstorage instead of in the DOM,
1717
// that way we don't have to worry about escaping code. note that the
1818
// DOM wants to render "<template>" strings when we put them in the

packages/runtime-common/utils.ts

+11
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,14 @@ export function decodeWebSafeBase64(encoded: string): string {
6161

6262
return Buffer.from(base64, 'base64').toString('utf-8');
6363
}
64+
65+
// This is the djb2_xor hash function from http://www.cse.yorku.ca/~oz/hash.html
66+
export function simpleHash(str: string) {
67+
let len = str.length;
68+
let h = 5381;
69+
70+
for (let i = 0; i < len; i++) {
71+
h = (h * 33) ^ str.charCodeAt(i);
72+
}
73+
return (h >>> 0).toString(16);
74+
}

0 commit comments

Comments
 (0)