hello jekyll Posted on October 05, 2010
my name is mo and i am testing out jekyll as a legit blogging platform.
things i need to learn:
- how to manage posts
- how to generate an rss feed
- how to publish
- how to schedule posts - use the published variable in your _config.yml file.
sometimes i need to publish code like the following:
1 namespace learning.jekyll
2 {
3 public class HelloWorld
4 {
5 public void SayHello()
6 {
7 System.Console.Out.WriteLine("Hello");
8 }
9 }
10 }