aka HHG
- You can read about markdown syntax in markdown cheatsheet, but generally you will need these:
- *italics*
- **bold**
- [link name](http://link.com)
- 
- >Quote text
- - bullet list item
- 1. numbered list item
-
Write your article using a markdown editor or even a simple note editor (except ms notepad). A useful one is stackedit.
-
Images should be named with lowercase latin characters, numbers and dashes. They should not contain capitals, spaces or any special character like
!¡@#™€¢∞§¶•ªº–≠$£%^&*()[]{}<>_+=.,:;'"?/|\\`~
Images should be placed in:
/source/images/**EDITION_NUMBER**/**POST-SLUG**/ .
For example if my post is named Foo Bar and belongs to the 5th edition, it should go in:
/source/images/5/foo-bar/
-
At the top of your markdown file add some useful metadata:
--- title: "How to post in hevnly magazine" subTitle: "Also known as HHG" readingTime: 4min heroImage: hhg-post-hero.jpg date: 2015-11-20 slug: hhg-post tags: markdown, blog, magazine, metadata category: product editionName: posting editionNumber: 1 ---
-
Save your markdown file using the following naming convention:
POST_DATE + POST_SLUG + .md
eg
2015-10-21-back-to-the-future.md
Thanks!