File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
import { marked } from 'marked' ;
2
2
import { sanitizeHtml } from './dompurify-runtime' ;
3
- import { md5 } from 'super-fast-md5 ' ;
3
+ import { simpleHash } from '. ' ;
4
4
5
5
const CODEBLOCK_KEY_PREFIX = 'codeblock_' ;
6
6
@@ -12,7 +12,7 @@ export function markedSync(markdown: string) {
12
12
// markdown, please use the `CodeBlock` modifier to render the
13
13
// markdown.
14
14
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 ) } ` ;
16
16
// we pass the code thru using localstorage instead of in the DOM,
17
17
// that way we don't have to worry about escaping code. note that the
18
18
// DOM wants to render "<template>" strings when we put them in the
Original file line number Diff line number Diff line change @@ -61,3 +61,14 @@ export function decodeWebSafeBase64(encoded: string): string {
61
61
62
62
return Buffer . from ( base64 , 'base64' ) . toString ( 'utf-8' ) ;
63
63
}
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
+ }
You can’t perform that action at this time.
0 commit comments