NEO.CORTEX
Open Source Contributions

CONTRIBUTE_YOUR_POST

Share your knowledge with the community! Follow the contribution guide below to submit your article via GitHub Pull Request.

Interactive Editor Available on Desktop

Our live MDX editor with real-time preview works best on larger screens. Visit this page on a desktop or tablet to write and preview your article directly in the browser.

On mobile, you can still review the contribution guidelines and MDX formatting guide below!

NEO.CORTEX is open source! We welcome contributions from the community. Follow these steps to submit your article:

1

Fork the Repository

Go to our GitHub repository and click the "Fork" button to create your own copy.

github.com/iamartyaa/neo-cortex
2

Create a New Branch

Clone your fork and create a new branch for your article:

git clone https://github.com/YOUR_USERNAME/neo-cortex.git
cd neo-cortex
git checkout -b post/your-article-title
3

Add Your MDX File

Download or copy your MDX file from above and save it to:

content/posts/your-post-slug.mdx
4

Submit a Pull Request

Commit your changes and push to your fork, then open a PR:

git add content/posts/your-post-slug.mdx
git commit -m "Add post: Your Post Title"
git push origin post/your-article-title

Get Published!

Once your PR is reviewed and merged, your article will automatically appear on NEO.CORTEX! You'll be credited as the author with a link to your GitHub profile.

📋 Contribution Guidelines

  • • Articles should be about AI, software engineering, or related tech topics
  • • Original content only - no plagiarism
  • • Minimum 500 words for quality content
  • • Include code examples where relevant
  • • Use proper grammar and formatting
  • • Be respectful and inclusive in your writing

MDX_FORMATTING_GUIDE.md

Basic Formatting

**bold text**
bold text
*italic text*
italic text
~~strikethrough~~
strikethrough
`inline code`
inline code

Headings

# Heading 1
## Heading 2
### Heading 3
#### Heading 4

Lists

- Unordered item 1
- Unordered item 2
  - Nested item

1. Ordered item 1
2. Ordered item 2

Links & Images

[Link Text](https://url.com)
![Alt Text](/path/to/image.jpg)

Code Blocks

```javascript
const greeting = "Hello!";
console.log(greeting);
```

Supported: javascript, typescript, python, rust, go, bash, json, css, html, and more!

Blockquotes

> This is a blockquote.
> It can span multiple lines.

Tables

| Header 1 | Header 2 |
|----------|----------|
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |

Special Components

<Callout type="info">
  Important information here!
</Callout>

Types: info, warning, tip, danger

<Video 
  src="https://youtube.com/..." 
  caption="Video title" 
/>

Emojis & Symbols

Just type emojis directly:

🚀 ⚡ 🔥 💡 ✨ 🎯 📚 🛠️ 🎨

Dividers

---

Creates a horizontal divider