You're up and running!
private DomainName(string TLD, string SLD, string SubDomain, TLDRule TLDRule)
{
this._tld = TLD != null ? TLD.ToLowerInvariant() : TLD;
this._domain = SLD != null ? SLD.ToLowerInvariant() : SLD;
this._subDomain = SubDomain != null ? SubDomain.ToLowerInvariant() : SubDomain;
this._tldRule = TLDRule;
}
Next you can update your site name, avatar and other options using the _config.yml file in the root of your repository (shown below).

The easiest way to make your first post is to edit this one. Go into /_posts/ and update the Hello World markdown file. For more instructions head over to the Jekyll Now repository on GitHub.
Written on March 3, 2014
