remove console logs
This commit is contained in:
@@ -22,7 +22,6 @@ export class NoteSharingService {
|
|||||||
mdText = this.sanitizeNote(mdText);
|
mdText = this.sanitizeNote(mdText);
|
||||||
const cryptData = encryptMarkdown(mdText);
|
const cryptData = encryptMarkdown(mdText);
|
||||||
const res = await this.postNote(cryptData.ciphertext, cryptData.hmac);
|
const res = await this.postNote(cryptData.ciphertext, cryptData.hmac);
|
||||||
console.log(res);
|
|
||||||
res.view_url += `#${cryptData.key}`;
|
res.view_url += `#${cryptData.key}`;
|
||||||
console.log(`Note shared: ${res.view_url}`);
|
console.log(`Note shared: ${res.view_url}`);
|
||||||
return res;
|
return res;
|
||||||
|
|||||||
@@ -59,7 +59,6 @@ const HighlightExtension = {
|
|||||||
name: 'highlight',
|
name: 'highlight',
|
||||||
level: 'inline',
|
level: 'inline',
|
||||||
start(src: string) {
|
start(src: string) {
|
||||||
// console.log(src);
|
|
||||||
return src.match(/==/)?.index;
|
return src.match(/==/)?.index;
|
||||||
},
|
},
|
||||||
tokenizer(src: string) {
|
tokenizer(src: string) {
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
export let start: number;
|
export let start: number;
|
||||||
|
|
||||||
export let items: any;
|
export let items: any;
|
||||||
console.log(items);
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- Styling is taken care of by Tailwind Typography plugin -->
|
<!-- Styling is taken care of by Tailwind Typography plugin -->
|
||||||
|
|||||||
Reference in New Issue
Block a user