diff --git a/open-isle-cli/src/utils/markdown.js b/open-isle-cli/src/utils/markdown.js
index 061d8b73b..774b60d1f 100644
--- a/open-isle-cli/src/utils/markdown.js
+++ b/open-isle-cli/src/utils/markdown.js
@@ -9,3 +9,10 @@ const md = new MarkdownIt({
export function renderMarkdown(text) {
return md.render(text || '')
}
+
+export function stripMarkdown(text) {
+ const html = md.render(text || '')
+ const el = document.createElement('div')
+ el.innerHTML = html
+ return el.textContent || el.innerText || ''
+}
diff --git a/open-isle-cli/src/views/HomePageView.vue b/open-isle-cli/src/views/HomePageView.vue
index 8d636f888..205f0b2ee 100644
--- a/open-isle-cli/src/views/HomePageView.vue
+++ b/open-isle-cli/src/views/HomePageView.vue
@@ -24,7 +24,7 @@