This blog is built using Hexo.
Please create a new GitHub issue for topic ideas that you would like us to write about
4. Edit the file with your file name in this directory: _drafts
tags: news
tags: notes
tags: releases
tags: tutorials (beginner)
tags: tutorials (intermediate)
tags: tutorials (advanced)
tags: behind the scenes
Note: Make sure you add a space after the colon
tags:
- news
- releases
tags:
- news
- by Uncle Bob
Note: Make sure you write your name the same way for all posts so it filters correctly (so no Uncle Bob one week and Uncle Bobby the next)
8. To edit a post that has been published, edit the file in this directory: _posts
10. Preview your post at: localhost:5000
cd public
git init
git remote add live [email protected]:marionettejs/blog.git
16. To push to the gh-pages
branch - NOT MASTER - (this is where blog.marionettejs.com is hosted on GitHub):
- Make sure you're still in the
public
directory git add .
git commit -m 'publish <TITLE>' && git push live master:gh-pages
There's a matching folder with the same name as your post. Save you image(s) in that folder.
![alt text](/path/to/img.png "Title")
``` [language]
code snippet
```
More info on formatting: http://hexo.io/docs/tag-plugins.html
If you're responding to a comment on Disqus and want syntax highlighting, place your code inside <pre><code>
tags. For example:
<pre><code>
var foo = 'bar';
alert('foo');
</code></pre>
Happy blogging!