GETTING STARTED

Of course, after your blog has been created, you can post immediately — but if you're looking to customize the look of your blog, or add images, or tag and organize your posts, then hopefully this short guide will help you. If you still haven't created a blog with us, see our community guidelines.

If you've created your blog and want your posts to show on the public reader alongside other posts on howdoyouspell.cool, set your blog as “public” in your blog configuration menu. (Note that pinned posts will not show up in the reader.)

Now, onward to the helpful getting-started stuff.


Word Limit

Before we get into anything else, posts have around a 10k word limit; keep this in mind if you are typing up long pieces, as they may need to be broken into multiple parts.


Markdown Cheat Sheet


Image Hosting

howdoyouspell.cool does not host images; nor does Write Freely. However, you can use markdown/CSS to add images to your posts (and even your blog theme) if you use the URL of an image hosted elsewhere.

There are a several image hosting sites to consider, these are only a few:postimages.org freeimgur freePhotobucket not free

If you've been following along, you already know this, but for the sake of thoroughness, this is the Markdown syntax to insert an image: “![alt text] (url of the image)” only without the quotation marks and the space between the brackets and parentheses.


CSS Formatting

body {
    background-color: white;
    color: black;
}

#content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 300px;
    text-align: center;
}

header {
    text-align: center;
}

header::before {
    content: '';
    display: block;
    background-image: url('YOUR URL');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    height: 450px;
    width: 100%;
}

Tips & Tricks

Post Titles

Use Markdown to mark the first line of any post as a header, like this: “# Header.” This will function as the article title. (See screenshot example below the hashtag section.)

Hashtags

Hashtags are currently the only way to group and organize your posts. This functionality mirrors hashtag functionality found elsewhere (Mastodon, Twitter, and so on). Use the # sign with some text after it and your post will be archived under that hashtag going forward. The hashtag can be placed anywhere in the post. You can then make a post listing out all your hashtags and then pin that post to your blog as a post directory of sorts. See the “directory” example from my blog below.

example of directory and header

Result

Indentation

As tab doesn't seem to work within the editor, you can instead use &nbsp (one space) or &ensp (two spaces) (with a semicolon after the p) before the line to add an indentation (or just use spaces, which may be more cumbersome and harder to visualize for some).

indent example

Pinning Posts

Any post can be pinned to the top of your blog, which effectively turns the post into a static page that won't be lost under a sea of other posts; simply click the “pin” option at the top of a post; this can be undone by clicking “unpin” after the fact. Pinned posts become static and do not show up on the public reader.

pin example

RSS Feed

Every blog has an RSS feed that can be accessed by taking the blog URL and adding /feed to the end. Example: https://howdoyouspell.cool/forrest/feed/. This feature can be toggled in your blog's customization page.

image.png