Marco Suárez Posted on Jan 3, 2018 How do I put a header image in a post? #help Top comments (3) Subscribe Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Collapse Expand Mac Siri Mac Siri Mac Siri Follow I'm a refactor-loving developer and I promise you I have nothing to do with Apple's Siri. Location Bronx, NY Joined Nov 6, 2016 • Jan 3 '18 • Edited on Jan 3 • Edited Dropdown menu Copy link Hide By adding cover_image into the front matter. Click on "Help" to the left of "Markdown" on top when you are writing a post for more info. Collapse Expand Christian Vasquez Christian Vasquez Christian Vasquez Follow Un simple mortal Email christianvasquezmelo@gmail.com Location Santo Domingo, Dominican Republic Education Software Engineering Work Software Developer Joined Feb 22, 2017 • Jan 4 '18 Dropdown menu Copy link Hide In case @maestromac's answer is not clear enough, the top of your post would look like this at the beginning: --- title: "" published: false description: "" tags: --- Enter fullscreen mode Exit fullscreen mode And to add the cover_image, you will have to do it manually: --- title: published: false description: tags: cover_image: <IMAGE-URL> --- Enter fullscreen mode Exit fullscreen mode And that image URL should be ending on a image file extension like .jpg or .png. Collapse Expand Nick Raphael Nick Raphael Nick Raphael Follow Brought to you by Nick Raphael. Fullstack azure architect and tech lead. Currently neck deep in dotnet core - azure stack - microservices. Location Sydney, Australia Work Team lead, solutions architect at IXUP, also dreamweaver. Joined Oct 21, 2019 • Nov 11 '19 Dropdown menu Copy link Hide How do I get my editor to look like that? Code of Conduct • Report abuse Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink. Hide child comments as well Confirm For further actions, you may consider blocking this person and/or reporting abuse
Top comments (3)
By adding
cover_image
into the front matter. Click on "Help" to the left of "Markdown" on top when you are writing a post for more info.In case @maestromac's answer is not clear enough, the top of your post would look like this at the beginning:
And to add the
cover_image
, you will have to do it manually:And that image URL should be ending on a image file extension like
.jpg
or.png
.How do I get my editor to look like that?