How to write a blog post

If you have an idea for a blog post, follow these steps to propose it and potentially get it published!
- 
    Propose your postBefore taking the time to write a post, please confirm that we will be able to publish it. We’re looking for topics specifically related to Express, and so we want to pre-approve all posts. For the moment, this means we aren’t accepting any unsolicited posts. To propose a blog post, open an issue entitled Blog post proposal: <your idea>.
- 
    Fork the repositoryIf the Express TC accepts your proposal, start to write your post by forking the expressjs.com repository and cloning it to your local machine. Once you open a pull request, you’ll be able to preview your post on GitHub. See step six below. Optional: To run the site locally and preview your post before opening a PR, see the setup instructions in the README. 
- 
    Create a new fileCreate a new file in the _postsdirectory named using following the format:YYYY-MM-DD-title.md.
- 
    Add the required front matterCopy the following front matter, including the dotted lines, and paste it at the top of file you just created. Replace the placeholder values with as desired. --- title: <your-title> sub_title: <your-optional-sub-title> description: <description-of-your-post> tags: <white-space-separated-topics> authors: - name: <your-name> github: <github-username> ---The githubproperty of an author is optional. Including your username only (not your full profile URL) will ensure that your blog post links out to it.
- 
    Add your contentFinally, start writing your content below the front matter. Use standard markdown formatting. 
- 
    Open a pull request (PR)Once you open a PR, you will be able to preview your results: There will be a section on the page entitled Deploy Preview for expressjscom-preview ready!Click the link to see the site rendered from your fork/branch.You can use this feature over multiple commits to refine your post by making a draftpull request. Once it’s ready for review, switch it to a formal PR.