diff --git a/apps/artboard/src/pages/artboard.tsx b/apps/artboard/src/pages/artboard.tsx
index c4809109..91b877ba 100644
--- a/apps/artboard/src/pages/artboard.tsx
+++ b/apps/artboard/src/pages/artboard.tsx
@@ -64,7 +64,7 @@ export const ArtboardPage = () => {
{name} | Reactive Resume
{metadata.css.visible && (
)}
diff --git a/libs/utils/src/namespaces/string.ts b/libs/utils/src/namespaces/string.ts
index cbcf3882..aad8be33 100644
--- a/libs/utils/src/namespaces/string.ts
+++ b/libs/utils/src/namespaces/string.ts
@@ -63,6 +63,8 @@ export const sanitize = (html: string, options?: sanitizeHtml.IOptions) => {
allowedAttributes: {
...options?.allowedAttributes,
"*": ["class", "style"],
+ "a": ["href", "target"],
+ "img": ["src", "alt"],
},
allowedStyles: {
...options?.allowedStyles,