Skip to content

Commit 009331b

Browse files
committed
Refactor code structure and remove redundant sections for improved readability and maintainability
1 parent 17b9dd0 commit 009331b

29 files changed

Lines changed: 14 additions & 17 deletions

_posts/2022-09-21-healthcare.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: Healthcare
44
subtitle: How to use chatbot and nlp to improve healthcare
55
cover-img:
6-
thumbnail-img: /assets/img/logo-white.png
6+
thumbnail-img: /img/logo-white.png
77
share-img:
88
tags: [chatbot, healthcare]
99
---

_posts/2022-10-1-education.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: Education
44
subtitle: Making education more accessible with chatbot and text messaging
55
cover-img:
6-
thumbnail-img: /assets/img/edu_chatbot.jpg
6+
thumbnail-img: /img/edu_chatbot.jpg
77
share-img:
88
tags: [chatbot, education]
99
---

_posts/2023-01-10-personalized-voice.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: Personalized Voice
44
subtitle: Familiar voices can improve communication
55
cover-img:
6-
thumbnail-img: /assets/img/yourvoice.jpg
6+
thumbnail-img: /img/yourvoice.jpg
77
share-img:
88
tags: [chatbot]
99
---

_posts/2023-06-15-committee.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: Vision 2.0
44
subtitle: New Chapter of LMN
55
cover-img:
6-
thumbnail-img: /assets/img/committees_logo.jpg
6+
thumbnail-img: /img/committees_logo.jpg
77
share-img:
88
tags: [chatbot, education, healthcare]
99
---

_posts/2024-01-10-llm-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: Large Language Models
44
subtitle: The New Operating System
55
cover-img:
6-
thumbnail-img: /assets/img/system2.jpg
6+
thumbnail-img: /img/system2.jpg
77
share-img:
88
tags: [education]
99
---

_posts/2024-02-2-college-explorer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: College Explorer
44
subtitle: Power to the Students
55
cover-img:
6-
thumbnail-img: /assets/img/college_explorer.jpg
6+
thumbnail-img: /img/college_explorer.jpg
77
share-img:
88
tags: [education]
99
---

_posts/2026-02-01-vision-3-announcement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: post
33
title: Announcing LastMileNow Vision 3.0
44
subtitle: Solving the "Last Mile" Problem in AI
5-
thumbnail-img: /assets/img/system2.jpg
5+
thumbnail-img: /img/system2.jpg
66
tags: [announcement, vision, ai]
77
---
88

app/[slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default async function Page({ params }: { params: Promise<{ slug: string
1919
}
2020

2121
const processedContent = await remark()
22-
.use(html)
22+
.use(html, { sanitize: false })
2323
.process(pageData.content)
2424
const contentHtml = processedContent.toString()
2525

app/blog/[slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default async function Post({ params }: { params: Promise<{ slug: string
1212
const postData = await getPostData(slug)
1313

1414
const processedContent = await remark()
15-
.use(html)
15+
.use(html, { sanitize: false })
1616
.process(postData.content)
1717
const contentHtml = processedContent.toString()
1818

app/opensource/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default async function OpenSourcePage() {
1414
const matterResult = matter(fileContents)
1515

1616
const processedContent = await remark()
17-
.use(html)
17+
.use(html, { sanitize: false })
1818
.process(matterResult.content)
1919
const contentHtml = processedContent.toString()
2020

0 commit comments

Comments
 (0)