Newsletter Content Management
This folder contains all newsletter markdown files. Each newsletter issue should be stored as a separate .md
file.
File Naming Convention
this-week-in-tech-1.md
- Issue #1this-week-in-tech-2.md
- Issue #2this-week-in-tech-3.md
- Issue #3- etc.
How to Add a New Newsletter Issue
1. Create the Markdown File
Create a new .md
file in this folder with the next issue number:
# Example: for issue #2
touch this-week-in-tech-2.md
2. Add Your Content
Use the same structure as the first issue. Here's a template:
# 👋 Hey Tech Innovators!
Your newsletter introduction here...
---
## 🔥 Tech Bytes – Top Highlights
### 📟 News Item 1
Brief description...
### ☕ News Item 2
Brief description...
---
## 📟 Detailed News Section 1
Detailed content with bullet points:
- 🤖 Feature 1
- ⚡ Feature 2
- 🧩 Feature 3
👉 **Call to action »**
---
## 💬 Quote of the Week
> **"Your quote here"**
> — *Author, Title*
---
## 📲 Stay Connected with Tech Bytes
- **Instagram:** [@techbytes_app](https://instagram.com/techbytes_app)
- **Twitter:** [@techbytes_app](https://twitter.com/techbytes_app)
- **LinkedIn:** [@tech-bytes-app](https://linkedin.com/company/tech-bytes-app)
Catch up on missed updates & stay tuned for more next week. Take care ❤️
3. Create the HTML Page
Create a new folder and HTML file:
mkdir ../this-week-in-tech-2
cp ../this-week-in-tech-1/index.html ../this-week-in-tech-2/index.html
4. Update the HTML File
Edit the new HTML file to:
- Change the title to "This Week in Tech #2"
- Update the fetch path to
../content/this-week-in-tech-2.md
- Update the sidebar links to include the new issue
5. Update All Sidebars
Add the new issue link to the "Past Newsletters" section in:
../index.html
(newsletter home)- All existing issue pages
Features Supported
- Emojis: Use emojis for visual appeal
- Links: Use
[text](url)
for clickable links - Bold: Use
**text**
for emphasis - Quotes: Use
> text
for blockquotes - Lists: Use
- item
for bullet points - Headers: Use
#
,##
,###
for different heading levels - Call-to-action: Use
👉 **text »**
for CTAs
Example Update Process
When adding Issue #2:
- Create
this-week-in-tech-2.md
with your content - Create
../this-week-in-tech-2/index.html
(copy from #1) - Update the fetch path in the new HTML file
- Add "This Week in Tech #2" to all sidebar lists
- Test the new issue page
Tips
- Keep the structure consistent across issues
- Use emojis to make content visually appealing
- Include clear call-to-action links
- End with social media links and sign-off
- Test the markdown rendering before publishing