Make your posts look great in Steemit and Busy by espoem

View this thread on steempeak.com
· @espoem ·
$143.75
Make your posts look great in Steemit and Busy
<div class="text-justify">

![Thumbnail](https://gateway.ipfs.io/ipfs/QmfQPcWbmJmszBBgULRVapL5s9aHZrVWipNVxuzaPdKuWw)

This tutorial contains basic commands and tags from Markdown and HTML that will help you create great posts which will not only have interesting content, but also a consistent structure and text flow.

Unfortunately not all Markdown and HTML features are available on Steemit and Busy, so in this tutorial we will only focus on features that *are* usable on [Steemit](https://steemit.com/) ([GitHub](https://github.com/steemit/condenser)) and [Busy](https://busy.org) ([GitHub](https://github.com/busyorg/busy)).

#### What Will I Learn?

- Markdown and HTML supported features
- structuring text with Markdown
- formatting text
- inserting elements into the text

#### Requirements and Difficulty

This tutorial has no actual requirements. Everything that is written in this tutorial can be tested in Steemit or Busy editors. It is suitable for beginners and for intermediate users, because I believe that anyone can find something useful in this tutorial.

## Headings

There is no wonder that we can discover amazing writers and content creators. Their texts are full of insight and deep thoughts. All these thoughts should be structured into coherent sections, which will help the author and the reader to get most out of the post.

There are 6 levels of sections (headings) to structure the text. Markdown uses the symbol of hashtag `#` to denote the level of the heading.

```md
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
```

Note that you have to leave a blank space between the hashtag and the title of the section.

## Formatting Within A Paragraph

We know how to make sections for the text. Let's now look at how you can emphasize parts of the text.

The most common edits are making the text **bold** or emphasized with *italics*. You can also use both of them at the **_same time_**. If you realize that you want to remove some part, you do not need to actually remove it but you can indicate the removal with a strike-through line. ~~Just like this sentence here.~~

```md
**bold**
*italics*
**_bold italics_**
~~strikethrough~~
```

If for some reason you need to write the text as superscript or subscript, Markdown will fail you. You will not be able to use it for this purpose. However, you can use the usual HTML tags just for the same thing.

```html
<sup>Superscript text</sup>
<sub>Subscript text</sub>
```

We should not forget about citing and quotes. We use the symbol of right angle `>` at the beginning of each line we want to have in the quote, including blank lines if we do not desire to have a diving space between the parts. Quotes can be nested, you simply repeat `>`.

> This is the first line of a quote.
>> This is the second line but the first line of a nested quote.
>
> Last part after leaving a blank line.

```md
> This is the first line of a quote.
>> This is the second line but the first line of a nested quote.
>
> Last part after leaving a blank line.
```

## Lists

Do you have a list of items you want to share but writing it all in one paragraph would make it hard to read? Markdown supports ordered and unordered lists.

```md
- the first item of the unordered list
- the second item of the unordered list
    1. the first item of the nested ordered list
        - the first item of the nested unordered list
        - the second item of the nested unordered list
    2. second item of the nested ordered list
- the third item of the unordered list
```

- the first item of the unordered list
- the second item of the unordered list
    1. the first item of the nested ordered list
        - the first item of the nested unordered list
        - the second item of the nested unordered list
    2. the second item of the nested ordered list
- the third item of the unordered list

You can use `-`, `+` or `*` to start an item in an unordered list. In my opinion, hyphens are the easiest to use. For the ordered list, you are not obligated to number the items sequentially. You could put number 1 for every item and it would still work. I suggest you keep the sequential numbering so that you can easily see where each item is.

## Links

What would be a text that contains exact numbers, statistics, facts or simply the source of your inspiration for your article without links to other sources? It is good if you can include the resources you used while writing your post. It will not only increase the credibility of your work, but it will also help make the sources more readily available to the readers.

The simple way to write a link is as follows:

```md
[name](url)
```

The use of links is straightforward. You want to link to another site, you write your text and wrap the selected words into brackets. You can see more examples on [GitHub](https://guides.github.com/features/mastering-markdown/) help page.

That is not all of the ways to write the links. We just used links by definition, but you can also make links by reference. There are 2 basic ways to do that.

Links by reference are suitable in the case that you want to have the links organized within the text or if you use a link multiple times but you want to have it defined only at one place.

```md
[name][reference]
[name][]
// the reference can be put anywhere after the call
[reference]: url
[name]: url
```

You can see how the links by reference are created. Instead of using parentheses after the name of the link, you use brackets with the reference. Then you define the reference somewhere after the definition.

The second way of writing links by reference requires empty brackets. The reference name is then taken from the name.

## Images

<div class="pull-right">

![Steem apps](https://steemitimages.com/250x250/https://gateway.ipfs.io/ipfs/QmWQvo9o9dc3WFYLK2PaBui3Phupu2cY1EYtRjPCR2hR1t)
</div>

Images have always been an important part of blog posts and they are important in the Utopian posts as well. Sometimes it is much easier to present the information visually with an image or a video instead of writing tens or hundreds of words. If the image has more than the presentational role and it carries actual information, take a moment and write few words to describe the image. Some may prefer to read the text and some prefer seeing visual content. Combining both gives you the best result.

If you are willing to put an image manually, you should know how to do it. The nice syntax is almost the same as for links, with one small difference. You put the exclamation mark at the beginning.

```md
![name](img-url)
```

You can work with the image URL the same way as with regular links. You can use the reference kind of syntax if you wish so and that will work. Uploading and putting images into a post is not always convenient. Luckily, both Steemit and Busy have implemented several ways of uploading an image.

1. You can drag and drop the image into the editor.
2. You can copy and paste the image into the editor.
3. There is a dedicated button for the image upload at both of the editors.

The image will be uploaded to the file hosting servers and it will return the image URL wrapped in the Markdown syntax. It will be inserted on the place where your cursor was in the editor.

### Image resizing

It often happens that we want to have the images in particular sizes without the need of local resizing. Sadly, Markdown does not support width and height attributes to set the dimensions of the image and Steemit with Busy does not allow using these attributes in the `<img>` tag. Those attributes have no effect, respectively.

How can you overcome this limitation? It is quite simple with Steemitimages. It is enough to prepend the URL of the image with `https://steemitimages.com/{maxWidth}x{maxHeight}/` and you will get the resized imaged. If you wish to use steemitimages but you want to keep the original size, use `https://steemitimages.com/0x0/`.

<table>
    <thead>
    </thead>
    <tbody>
        <tr>
            <td><img src="https://steemitimages.com/300x300/https://gateway.ipfs.io/ipfs/QmWQvo9o9dc3WFYLK2PaBui3Phupu2cY1EYtRjPCR2hR1t" alt=""></td>
            <td><img src="https://steemitimages.com/200x200/https://gateway.ipfs.io/ipfs/QmWQvo9o9dc3WFYLK2PaBui3Phupu2cY1EYtRjPCR2hR1t" alt=""></td>
            <td><img src="https://steemitimages.com/100x100/https://gateway.ipfs.io/ipfs/QmWQvo9o9dc3WFYLK2PaBui3Phupu2cY1EYtRjPCR2hR1t" alt=""></td>
        </tr>
    </tbody>
</table>

## Code

This section is dedicated specifically to programmers and everyone who needs to include code in their post. We distinguish 2 basic kinds of code sections in the text; inline code and code block.

The first one is pretty straightforward. It is used for few words you want to highlight within a sentence. The only thing you need is to wrap a word in between 2 backticks (back apostrophes) \`\` like \`inline code\` and you will get `inline code`. Inline code — which is equivalent to `<code></code>` tag in HTML — should not be used for whole paragraphs or codes across more lines.

For that purpose, we have the code blocks. The original syntax considered code blocks by indenting the lines with 4 spaces. Writing more than 4 spaces will allow code nesting.

```md
␣␣␣␣First line of the code block
␣␣␣␣Second line
␣␣␣␣␣␣Third, more indented line
```

The symbol of visible blank space `␣` was used to show the spaces in each line.

    The first line of the code block
    The second line
      Third, more indented line

In my opinion, this kind of code block is not convenient since it takes more time to properly indent the code unless you have an editor that can easily indent it for you. Sadly, the tab keyboard does not work in the browser editor to indent the content.

There is another way of writing a code block, which comes from the GitHub flavour and is supported in Steemit and Busy. It is similar to inline code syntax. You will need 6 backticks instead of 2; 3 for opening the block and 3 for closing the block. This way of writing also allows supporting the syntax highlighting because you can specify the language the code is written in.

```python
def get_repository(post):
    """Returns the first repository found in the given post."""
    url = "github.com/"
    try:
        for link in post.json_metadata["links"]:
            if url in link:
                return link
    except KeyError:
        pass
    return ""
```

We can take a look at this function written by @amosbastian, which is used for fetching the GitHub project repository from submitted posts. You can see below how it is written in Markdown. Markdown code blocks are the same as code and/or text written in `<pre><code></code></pre>` which ensures that the content is taken as code and everything inside those tags are kept as is. For example repeated whitespace characters are kept and not reduced to one.

    ```python
    def get_repository(post):
        """Returns the first repository found in the given post."""
        url = "github.com/"
        try:
            for link in post.json_metadata["links"]:
                if url in link:
                    return link
        except KeyError:
            pass
        return ""
    ```

## Tables

Tables are a crucial structure when we want to present information in an organized way. Tables are often used in HTML and have easy-to-remember tags. Nevertheless, let's talk about how we can create a table in Markdown.

```md
| Name   | Category | Position          |
| :----: | -------: | :---------------- |
| espoem | Blog     | Community Manager |
| oups   | Graphics | Moderator         |
```

Markdown can distinguish table head and table rows just like HTML. There are also Markdown flavours that let you align the cells.

| Name   | Category | Position          |
| :----: | -------: | :---------------- |
| espoem | Blog     | Community Manager |
| oups   | Graphics | Moderator         |

The tables are easy to make. It may not look easy as first, because you often repeat the divider symbol `|` and have to know how many columns you actually have, but if you do not want to write too much, you could do the same just with the following

```md
Name | Category | Position
:-: | -: | :-
espoem | Blog | Community Manager
oups | Graphics | Moderator
```

So, what did we actually write? Every proper table should have a head to describe the data in the column. The head is defined in the first row of the table followed by the second row with the hyphen dividers. These two lines make the table head.

Each row is written on a new line and every two cells are divided by the pipe symbol `|`. You can see that the leftmost and the rightmost symbols can be omitted and that markdown can handle arbitrary whitespace character between the cell data and the divider. It also does not matter how many hyphens you have in the head dividing row, as long as you keep at least one.

You could see that I used special characters `:` in the second row. You probably know it from the GitHub Markdown flavour and it is used to align the text in the column. We can usually align the text as follows: center `:-:`, align left `:-`, and align right `-:`. Unfortunately, we can't use all of them in Steemit or Busy. The left alignment is the default one so there is no need to specify it. You can align the text to right, but you will not be able to center the text with this syntax.

## Text alignment

We have seen how to edit the text that flows from top to bottom and from left to right. We will now learn putting elements on different sides of the lines.

First, we will take a look at simple text alignment within a paragraph / division and then we will cover how to align whole paragraphs / sections.

These tips are only for HTML tags. You will not be able to get the same result when using Markdown.

We have a few options to align the text. By default, the text is aligned to left, but we can also align it right, center it or make it justified, so the text will occupy the whole line if possible.

</div>

### Text Align Examples

The first example will be aligned left. In this case, we change nothing and write the text (content) normally.

<div class="text-right">
The second example will be aligned right.
</div>

<center>The third example will be put in the center.</center>

<div class="text-justify">
The fourth and last example will be justified. To show this effect, we will need enough words to fill the whole line so that it easily reaches the following line.
</div>

```md
First example will be aligned to left. In this case, we change nothing and write the text (content) normally.
<div class="text-right">
The second example will be aligned to right.
</div>
<center>Third example will be put in the center.</center>
<div class="text-justify">
The fourth and the last example will be justified. To show the effect, we will need enough words to fill the whole line so that we easily reach the following line.
</div>
```

When you put text or images in the `<center>` tag, do not break the line as you may face additional vertical white space that you really did not want.

### Two columns

<div class="text-justify">

It is time to align whole sections and paragraphs. What I mean is that Steemit and Busy support classes that allow you to put content into 2 columns side by side, or to put an element on either side of the line while the rest of the content will flow around it.

<div class="pull-left">
<img src="https://steemitimages.com/300x300/https://gateway.ipfs.io/ipfs/QmWQvo9o9dc3WFYLK2PaBui3Phupu2cY1EYtRjPCR2hR1t" alt="">
</div>

The image is pulled to the left side, therefore all other content will flow around it if there is enough space for it.

<hr>

<div class="pull-right">
<img src="https://steemitimages.com/300x300/https://gateway.ipfs.io/ipfs/QmWQvo9o9dc3WFYLK2PaBui3Phupu2cY1EYtRjPCR2hR1t" alt="">
</div>

We can do the same for the right side. The only difference is using a slightly different name of the class in the `<div>` tag.

<hr>

We can also put the content explicitly into two columns that will reside next to each other.

<div class="pull-left">

![](https://gateway.ipfs.io/ipfs/QmWQvo9o9dc3WFYLK2PaBui3Phupu2cY1EYtRjPCR2hR1t)
</div>
<div class="pull-right">

![](https://gateway.ipfs.io/ipfs/QmUDV2G66C2NrURBqJWHG784SzXdojqQKqLwLuZDGfxmdR)
</div>

<hr>

You can see that I used horizontal lines to break the flow after the divs. If I did not do that, the following content would try to fit the space right after that.

In this case, only the images were put into the divs with the classes but you can put other kinds of content in there as well.

```md
<div class="pull-left">
// this line must be blank
![](https://gateway.ipfs.io/ipfs/QmWQvo9o9dc3WFYLK2PaBui3Phupu2cY1EYtRjPCR2hR1t)
</div>
<div class="pull-right">
// this line must be blank
![](https://gateway.ipfs.io/ipfs/QmUDV2G66C2NrURBqJWHG784SzXdojqQKqLwLuZDGfxmdR)
</div>
```

Take a good look at the blank lines between the div opening tag and the image. If we did not leave the blank line there, the Markdown would not be properly processed and we might face a problem that the image is not displayed.

Note: There were added comments in the code blocks so that it is displayed correctly in Busy. There seems to be an issue in displaying code blocks that contain blank lines.

However, Steemit and Busy can display images even if the links are not inside the parentheses as we showed here in the tutorial, which means you can see the text around the image.

![Image flaw with div](https://gateway.ipfs.io/ipfs/QmQyLryJwPkodwAETG23uvT2J8i7FSeMTutrV7BwfY3c85)

So you have two options when choosing how to display the images correctly without the Markdown text. You can either leave a blank line after the opening div tag, or you can insert images with HTML `<img>` tag.

```md
<div class="pull-left">
<img src="https://gateway.ipfs.io/ipfs/QmUDV2G66C2NrURBqJWHG784SzXdojqQKqLwLuZDGfxmdR" alt="">
</div>
<div class="pull-right">
<img src="https://gateway.ipfs.io/ipfs/QmUDV2G66C2NrURBqJWHG784SzXdojqQKqLwLuZDGfxmdR" alt="">
</div>
```

## Summary

This whole post was about tips and tricks on utilizing Markdown for writing appealing posts. One can be a great author with amazing thoughts and ideas, but he or she should not forget about the appearance of the post.

You can see the table with summarized commands to format the text below. Hopefully, this post taught you something new, or served as a reminder to not forget the appearance and structure of your posts.

| Description    | Markdown                   | HTML                                     | Result                                                                                                       |
| -------------- | -------------------------- | ---------------------------------------- | ------------------------------------------------------------------------------------------------------------ |
| Italics        | `*italics*` or `_italics_` | `<em>italics</em>`                       | *italics*                                                                                                    |
| Bold           | `**bold**` or `__bold__`   | `<strong>bold</strong>`                  | **bold**                                                                                                     |
| Strikethrough  | `~~strike~~`               | `<s>strike</s>` or `<del>strike</del>`   | ~~strike~~                                                                                                     |
| Link           | `[name](url)`              | `<a href="url">name</a>`                 | [Utopian](https://join.utopian.io)                                                                           |
| Image          | `![name](img-url)`         | `<img src="img-url" alt="name">`         | ![name](https://steemitimages.com/50x50/https://ipfs.io/ipfs/QmfUuKxDbt7SujktQMjPmr1SvzaHrf1Ms1HttkcznNpH7N) |
| Heading 1      | `# Heading 1`              | `<h1>Heading 1</h1>`                     | <h1>Heading 1</h1>                                                                                           |
| Heading 2      | `## Heading 2`             | `<h2>Heading 2</h2>`                     | <h2>Heading 2</h2>                                                                                           |
| Heading 3      | `### Heading 3`            | `<h3>Heading 3</h3>`                     | <h3>Heading 3</h3>                                                                                           |
| Heading 4      | `#### Heading 4`           | `<h4>Heading 4</h4>`                     | <h4>Heading 4</h4>                                                                                           |
| Heading 5      | `##### Heading 5`          | `<h5>Heading 5</h5>`                     | <h5>Heading 5</h5>                                                                                           |
| Heading 6      | `###### Heading 6`         | `<h6>Heading 6</h6>`                     | <h6>Heading 6</h6>                                                                                           |
| Inline code    | \`inline code\`            | `<code>inline code</code>`               | `inline code`                                                                                                |
| Code block     | \`\`\`code block\`\`\`     | `<pre><code>code block</code></pre>`     | ```code block```                                                                                             |
| Quote          | `>Line of quote`           | `<blockquote>Quote line</blockquote>`    | <blockquote>Line of quote</blockquote>                                                                       |
| Superscript    | —                         | `<sup>Sup</sup>`                         | text<sup>Sup</sup>                                                                                           |
| Subscript      | —                         | `<sub>Sub</sub>`                         | text<sub>Sub</sub>                                                                                           |
| Unordered list | `- first`<br>`- second`    | `<ul><li>first</li><li>second</li></ul>` | <ul><li>first</li><li>second</li></ul>                                                                       |
| Ordered list   | `1. first`<br>`2. second`  | `<ol><li>first</li><li>second</li></ol>` | <ol><li>first</li><li>second</li></ol>                                                                       |

If you have any quetions regarding the content of this tutorial, feel free to write a comment below. Either I will know the answer right away or will help you find the answer.

<div class="pull-right">

[![GitHub account](https://steemitimages.com/20x20/https://gateway.ipfs.io/ipfs/QmRjLKjN8YiHbwEZP5p7w9xvkGErXkmEAZWe497ESLwUsS)](https://github.com/espoem)
</div>

Thank you for reading.<br>@espoem

### References

- [Markdown syntax][markdown]
- [Markdown GitHub flavour][markdown-github]
- [Mastering Markdown][master-md]
- [Markdown Tutorial + Steemit Blogging Tips][sndbox-md]

#### Images

- Images were created by @andrejcibik

</div>

[markdown]: https://daringfireball.net/projects/markdown/syntax
[markdown-github]: https://github.github.com/gfm/
[master-md]: https://guides.github.com/features/mastering-markdown/
[sndbox-md]: https://steemit.com/tutorial/@sndbox/markdown-tutorial-steemit-blogging-tips
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 109 others
👎  
properties (23)
post_id48,671,212
authorespoem
permlinkmake-your-posts-look-great-in-steemit-and-busy
categoryutopian-io
json_metadata"{"links": ["/exit?url=https://steemit.com/", "/exit?url=https://github.com/steemit/condenser", "https://busy.org", "/exit?url=https://github.com/busyorg/busy", "/exit?url=https://guides.github.com/features/mastering-markdown/", "/@amosbastian", "/exit?url=https://join.utopian.io", "/exit?url=https://github.com/espoem", "/@espoem", "/exit?url=https://daringfireball.net/projects/markdown/syntax"], "community": "busy", "users": ["amosbastian", "espoem", "andrejcibik", "sndbox"], "tags": ["utopian-io", "tutorials", "blog", "markdown", "busy"], "app": "busy/2.4.0", "format": "markdown"}"
created2018-05-15 14:04:36
last_update2018-05-15 14:04:36
depth0
children55
net_rshares28,996,662,830,360
last_payout2018-05-22 14:04:36
cashout_time1969-12-31 23:59:59
total_payout_value110.210 SBD
curator_payout_value33.542 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length23,520
author_reputation59,186,440,518,630
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (174)
@santarius · (edited)
$7.59
Using `<div class=phishy>text</div>` we can also write in red :)

For example:
# <div class=phishy>text</div>
`# <div class=phishy>text</div>`

It is also worth knowing about `&nbsp;` (non-breaking space). 
It allows you to create any number of spaces or blank lines in the text :)

For example:

# Great  tutorial!&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Resteemed!

`# Great  tutorial!&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Resteemed!`
👍  , , , , , , , , ,
properties (23)
post_id48,675,041
authorsantarius
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180515t143048794z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-05-15 14:30:48
last_update2018-05-15 14:35:54
depth1
children9
net_rshares1,533,213,312,372
last_payout2018-05-22 14:30:48
cashout_time1969-12-31 23:59:59
total_payout_value5.830 SBD
curator_payout_value1.764 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length469
author_reputation3,696,389,924,413
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (10)
@espoem ·
Hi, thank you for this comment. Unluckily, that class is not supported in Busy. Having multiple spaces in the text is not a good practice in my opinion but it is nice to know about these.
properties (22)
post_id48,675,805
authorespoem
permlinkre-santarius-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180515t143616389z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-05-15 14:36:18
last_update2018-05-15 14:36:18
depth2
children3
net_rshares0
last_payout2018-05-22 14:36:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length187
author_reputation59,186,440,518,630
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@santarius · (edited)
`&nbsp;` allows you to separate the header from the text as in this example:

![](https://steemitimages.com/DQmVTa5PQgXF7UiDeBCXHffHDwnUvX2PfFmgxMT8JDLG1pw/image.png)
<sup>[**[Source]**](https://steemit.com/pl-technologia/@santarius/wademekum-mlodego-audiofila-czesc-druga-formaty-audio)</sup>

And it is useful in many other unexpected situations :)
properties (22)
post_id48,677,518
authorsantarius
permlinkre-espoem-re-santarius-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180515t144830419z
categoryutopian-io
json_metadata"{"links": ["https://steemit.com/pl-technologia/@santarius/wademekum-mlodego-audiofila-czesc-druga-formaty-audio"], "app": "steemit/0.1", "image": ["https://steemitimages.com/DQmVTa5PQgXF7UiDeBCXHffHDwnUvX2PfFmgxMT8JDLG1pw/image.png"], "tags": ["utopian-io"]}"
created2018-05-15 14:48:30
last_update2018-05-15 14:50:00
depth3
children2
net_rshares0
last_payout2018-05-22 14:48:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length350
author_reputation3,696,389,924,413
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@adam.tran ·
<div class=phishy>You've made my day!</div>

Thanks to @espoem and @santarius!

#### Question:  

>_Can I edit font with markdown or html?_
properties (22)
post_id48,813,827
authoradam.tran
permlinkre-santarius-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t110816028z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "users": ["espoem", "santarius"], "app": "steemit/0.1"}"
created2018-05-16 11:08:18
last_update2018-05-16 11:08:18
depth2
children2
net_rshares0
last_payout2018-05-23 11:08:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length139
author_reputation5,425,558,423,899
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@espoem ·
Hey, markdown does not support any real changes with the font or how the result will look like. It is used for easy content writing with simple syntax to denote the structure.

HTML on the other hand can support font changes like weigth or font family. You would most likely use CSS for this part. Still it could be changed for individual tags with inline styling but Steemit and Busy do not support that.

I tried to look for some guides on this topic and one solution is to use a "unicode text converter".

- https://steemit.com/how-to/@knowledges/5v7acg
- https://steemit.com/steemit/@rdelgadop/6wtx6g

This is the only thing that seems to work or worked in the past. I did not try it, though. 
properties (22)
post_id48,816,107
authorespoem
permlinkre-adamtran-re-santarius-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t112802062z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "busy/2.4.0", "community": "busy"}"
created2018-05-16 11:28:03
last_update2018-05-16 11:28:03
depth3
children1
net_rshares0
last_payout2018-05-23 11:28:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length697
author_reputation59,186,440,518,630
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@sourovafrin ·
<div class=phishy>this is a test</div>
properties (22)
post_id48,868,753
authorsourovafrin
permlinkre-santarius-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t180527924z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-05-16 18:05:33
last_update2018-05-16 18:05:33
depth2
children0
net_rshares0
last_payout2018-05-23 18:05:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length38
author_reputation186,685,725,170,609
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@utopian-io ·
Hey @santarius
Here's a tip for your valuable feedback! @Utopian-io loves and incentivises informative comments.

**Contributing on Utopian**
Learn how to contribute on <a href="https://join.utopian.io">our website</a>.

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for Utopian Witness!</a>
properties (22)
post_id48,982,740
authorutopian-io
permlink20180517t130921226z
categoryutopian-io
json_metadata"{"tags": ["utopian.tip"], "app": "utopian-io"}"
created2018-05-17 13:09:21
last_update2018-05-17 13:09:21
depth2
children0
net_rshares0
last_payout2018-05-24 13:09:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length409
author_reputation152,913,012,544,965
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@amosbastian · (edited)
$0.09
<div class="text-left">
I
</div>
<center><div class="phishy">love</div></center>
<div class="text-right">
Espoem!
</div>
👍  
properties (23)
post_id48,675,043
authoramosbastian
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180515t143050688z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-05-15 14:30:51
last_update2018-05-15 14:31:48
depth1
children0
net_rshares18,619,661,138
last_payout2018-05-22 14:30:51
cashout_time1969-12-31 23:59:59
total_payout_value0.078 SBD
curator_payout_value0.012 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length120
author_reputation174,225,255,912,876
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@espoem ·
$0.10
A tip that did not make it to the post. You can write in Latex in Busy.

```
[+]E = mc^2[+]
```

~~[+]E = mc^2[+]~~

Note: It seems that it does not work in the comments but you can use it in the editor. The formulas will be replaced with an image of the formula.

![image.png](https://gateway.ipfs.io/ipfs/QmRuexbrAy4SbxQYLqjxDM44SrnVbNi4tvX5xp38YtaUC6)
👍  , , , ,
properties (23)
post_id48,678,556
authorespoem
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180515t145534477z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-05-15 14:55:36
last_update2018-05-15 14:55:36
depth1
children2
net_rshares21,245,427,410
last_payout2018-05-22 14:55:36
cashout_time1969-12-31 23:59:59
total_payout_value0.090 SBD
curator_payout_value0.012 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length355
author_reputation59,186,440,518,630
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (5)
@drsensor · (edited)
Any alternative for this?
```
$$ P_{in} = I_{in} \times V_{in} $$
- $I_{in}$ = electric current of the input in ampere (A)
- $V_{in}$ = voltage of the input in volt (V)
```
In VSCode it will be rendered as

![Peek 2018-05-20 09-53.gif](https://gateway.ipfs.io/ipfs/QmZWH4tuzWkzTBegbuabMxTXkydbcpGqsEwBe3GUTVA1j4)
properties (22)
post_id49,378,819
authordrsensor
permlinkre-espoem-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180520t024127175z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "busy/2.4.0", "community": "busy"}"
created2018-05-20 02:41:27
last_update2018-05-20 02:53:51
depth2
children1
net_rshares0
last_payout2018-05-27 02:41:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length313
author_reputation17,692,034,507,824
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@espoem · (edited)
You could write it like this:

```md
<center>[+]P_{in} = I_{in} \times V_{in}[+]</center>
- [+]I_{in}[+] = electric current of the input in ampere (A)
- [+]V_{in}[+] = voltage of the input in volt (V)
```

![image.png](https://gateway.ipfs.io/ipfs/QmWB7BxYxVazqjNBCumnVK8rijqQNeGCmck3874wHrQ9Ak)

Note: If you see this comment in Busy, you will most likely not see the [+] symbols but code for images. Yeah, Busy replaced that.
👍  
properties (23)
post_id49,404,238
authorespoem
permlinkre-drsensor-re-espoem-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180520t072124092z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "community": "busy", "app": "busy/2.4.0"}"
created2018-05-20 07:21:27
last_update2018-05-20 07:23:15
depth3
children0
net_rshares611,844,000
last_payout2018-05-27 07:21:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length427
author_reputation59,186,440,518,630
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@bartheek ·
$0.04
Great tutorial. Upvoted & resteemed!
👍  
properties (23)
post_id48,685,132
authorbartheek
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180515t154047644z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-05-15 15:40:24
last_update2018-05-15 15:40:24
depth1
children0
net_rshares7,447,864,455
last_payout2018-05-22 15:40:24
cashout_time1969-12-31 23:59:59
total_payout_value0.036 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length36
author_reputation19,749,475,012,886
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@zoltarian ·
Great post. Thanks for all It will take time to learn all but very helpful. I add it to my favourite section and will use it when I creating a  new post.
properties (22)
post_id48,723,204
authorzoltarian
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180515t205403503z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-05-15 20:54:03
last_update2018-05-15 20:54:03
depth1
children0
net_rshares0
last_payout2018-05-22 20:54:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length153
author_reputation35,481,338,923,357
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@portugalcoin ·
$0.39
Thank you for your contribution.
- I really enjoyed your tutorial and it is very useful for all of us.

Looking forward to your upcoming tutorials.


Your contribution has been evaluated according to [Utopian rules and guidelines](https://utopian.io/rules), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post,[Click here](https://review.utopian.io/result/8/11141311)

---- 
Need help? Write a ticket on https://support.utopian.io/. 
Chat with us on [Discord](https://discord.gg/uTyJkNm). 
[[utopian-moderator]](https://join.utopian.io/)
👍  ,
properties (23)
post_id48,731,202
authorportugalcoin
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180515t221203221z
categoryutopian-io
json_metadata"{"links": ["https://utopian.io/rules", "https://review.utopian.io/result/8/11141311", "https://support.utopian.io/", "https://discord.gg/uTyJkNm", "https://join.utopian.io/"], "app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-05-15 22:12:03
last_update2018-05-15 22:12:03
depth1
children3
net_rshares81,199,735,472
last_payout2018-05-22 22:12:03
cashout_time1969-12-31 23:59:59
total_payout_value0.385 SBD
curator_payout_value0.009 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length625
author_reputation214,343,891,436,406
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@espoem ·
Hi, thank you for your time evaluating this post.
properties (22)
post_id48,731,507
authorespoem
permlinkre-portugalcoin-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180515t221453553z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-05-15 22:14:54
last_update2018-05-15 22:14:54
depth2
children2
net_rshares0
last_payout2018-05-22 22:14:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length49
author_reputation59,186,440,518,630
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@kingyus ·
man that was intense...to all fairness people want a more friendly interface ;)
properties (22)
post_id48,793,027
authorkingyus
permlinkre-espoem-re-portugalcoin-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t075948380z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "steemit/0.1"}"
created2018-05-16 08:00:30
last_update2018-05-16 08:00:30
depth3
children1
net_rshares0
last_payout2018-05-23 08:00:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length79
author_reputation6,087,576,676,508
root_title"Make your posts look great in Steemit and Busy"
beneficiaries
0.
accountminnowsupport
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@utopian-io ·
$0.19
Hey @espoem
**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Contributing on Utopian**
Learn how to contribute on <a href='https://join.utopian.io'>our website</a> or by watching <a href='https://www.youtube.com/watch?v=8S1AtrzYY1Q'>this tutorial</a> on Youtube.

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
👍  
properties (23)
post_id48,731,528
authorutopian-io
permlinkre-make-your-posts-look-great-in-steemit-and-busy-20180515t221508z
categoryutopian-io
json_metadata"{"app": "beem/0.19.29"}"
created2018-05-15 22:15:09
last_update2018-05-15 22:15:09
depth1
children0
net_rshares40,135,714,010
last_payout2018-05-22 22:15:09
cashout_time1969-12-31 23:59:59
total_payout_value0.146 SBD
curator_payout_value0.048 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length503
author_reputation152,913,012,544,965
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@enyason ·
this was helpful, thanks so much @espoem
properties (22)
post_id48,743,736
authorenyason
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t002332876z
categoryutopian-io
json_metadata"{"users": ["espoem"], "app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-05-16 00:23:33
last_update2018-05-16 00:23:33
depth1
children0
net_rshares0
last_payout2018-05-23 00:23:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length40
author_reputation54,533,913,716
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@luxx · (edited)
$1.00
>We should not forget about citing and quotes. We use the symbol of right angle > at the beginning of each line we want to have in the quote, including blank lines if we do not desire to have a diving space between the parts. Quotes can be nested, you simply repeat >.
 
Fantastic. I needed to learn this. 
And this too [my newest sketch](https://steemit.com/korea/@luxx/pen-sketch-for-slowwalker)
👍  ,
properties (23)
post_id48,761,873
authorluxx
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t031721080z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/korea/@luxx/pen-sketch-for-slowwalker"], "tags": ["utopian-io"]}"
created2018-05-16 03:17:27
last_update2018-05-16 03:19:45
depth1
children0
net_rshares203,832,210,288
last_payout2018-05-23 03:17:27
cashout_time1969-12-31 23:59:59
total_payout_value0.752 SBD
curator_payout_value0.246 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length397
author_reputation2,261,749,195,153
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@chewing ·
$1.00
Using 5x ```<div class="pull-right"></div>``` and put inside link to image, we can make custom thumbnail :) Works on steemit and busy.
👍  
properties (23)
post_id48,780,771
authorchewing
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t061307552z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-05-16 06:13:12
last_update2018-05-16 06:13:12
depth1
children2
net_rshares203,108,787,168
last_payout2018-05-23 06:13:12
cashout_time1969-12-31 23:59:59
total_payout_value0.749 SBD
curator_payout_value0.248 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length134
author_reputation1,047,128,548,050
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@steem-works ·
Thanks sir
properties (22)
post_id48,791,544
authorsteem-works
permlinkre-chewing-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t074657506z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "steemit/0.1"}"
created2018-05-16 07:47:03
last_update2018-05-16 07:47:03
depth2
children1
net_rshares0
last_payout2018-05-23 07:47:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10
author_reputation891,250,938,133
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@chewing ·
Np ;) but must start writing from the second line
properties (22)
post_id48,801,601
authorchewing
permlinkre-steem-works-re-chewing-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t091922588z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "steemit/0.1"}"
created2018-05-16 09:19:27
last_update2018-05-16 09:19:27
depth3
children0
net_rshares0
last_payout2018-05-23 09:19:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length49
author_reputation1,047,128,548,050
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@joendegz ·
i have found some good formating lessons,
properties (22)
post_id48,791,763
authorjoendegz
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t074857797z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "steemit/0.1"}"
created2018-05-16 07:49:03
last_update2018-05-16 07:49:03
depth1
children0
net_rshares0
last_payout2018-05-23 07:49:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length41
author_reputation12,302,687,708,123
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@zuhrafriska ·
Sangat indah 
Visit my blog
properties (22)
post_id48,791,881
authorzuhrafriska
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t074958665z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "steemit/0.1"}"
created2018-05-16 07:50:06
last_update2018-05-16 07:50:06
depth1
children0
net_rshares0
last_payout2018-05-23 07:50:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length27
author_reputation7,605,208,258
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@herverisson · (edited)
All of this was pretty much already explained in other posts but since they disappear along the way of the feed it's nice to have ALL in the same tutorial again :) Good job! Wish I could bookmark that.
properties (22)
post_id48,798,436
authorherverisson
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t085117671z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "steemit/0.1"}"
created2018-05-16 08:51:00
last_update2018-05-16 08:51:18
depth1
children2
net_rshares0
last_payout2018-05-23 08:51:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length201
author_reputation102,067,831,711,389
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@espoem ·
You are right. There have been other posts talking about the same. There are minor changes in parsing and rendering the content in Steemit and Busy with time but the principles remain the same.

If you use Busy, they have this bookmark feature. Or you can take a look at http://www.steemshare.com/
👍  
properties (23)
post_id48,798,828
authorespoem
permlinkre-herverisson-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t085441694z
categoryutopian-io
json_metadata"{"community": "busy", "tags": ["utopian-io"], "app": "busy/2.4.0"}"
created2018-05-16 08:54:45
last_update2018-05-16 08:54:45
depth2
children1
net_rshares3,248,341,843
last_payout2018-05-23 08:54:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length297
author_reputation59,186,440,518,630
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@herverisson ·
Yeah, Busy has a few things the main website does not have :) I don't know why the bookmarking can't be accessible here as well. Anyway...
properties (22)
post_id48,808,773
authorherverisson
permlinkre-espoem-re-herverisson-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t102453670z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-05-16 10:24:36
last_update2018-05-16 10:24:36
depth3
children0
net_rshares0
last_payout2018-05-23 10:24:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length138
author_reputation102,067,831,711,389
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@yandot ·
<div class="phishy">Very awesome! Great work espoem :)</div>
properties (22)
post_id48,801,547
authoryandot
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t091754576z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "steemit/0.1"}"
created2018-05-16 09:18:57
last_update2018-05-16 09:18:57
depth1
children0
net_rshares0
last_payout2018-05-23 09:18:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length60
author_reputation59,035,209,817,935
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@postpromoter ·
re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t182746740z
You got a 3.07% upvote from @postpromoter courtesy of @espoem!

Want to promote your posts too? Check out the [Steem Bot Tracker website](https://steembottracker.com) for more info. If you would like to support the development of @postpromoter and the bot tracker please [vote for @yabapmatt for witness!](https://v2.steemconnect.com/sign/account-witness-vote?witness=yabapmatt&approve=1)
properties (22)
post_id48,871,619
authorpostpromoter
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t182746740z
categoryutopian-io
json_metadata"{"app": "postpromoter/2.0.0"}"
created2018-05-16 18:27:45
last_update2018-05-16 18:27:45
depth1
children0
net_rshares0
last_payout2018-05-23 18:27:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length389
author_reputation21,053,937,692,175
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@effofex ·
Resizing images has been bugging me forever and I didn't know there was a solution, thanks for this!

> https://steemitimages.com/{maxWidth}x{maxHeight}/
properties (22)
post_id48,880,618
authoreffofex
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t194529665z
categoryutopian-io
json_metadata"{"links": ["https://steemitimages.com/{maxWidth}x{maxHeight}/"], "app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-05-16 19:45:30
last_update2018-05-16 19:45:30
depth1
children3
net_rshares0
last_payout2018-05-23 19:45:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length153
author_reputation14,417,464,439,057
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@espoem ·
It is similar to local resizing but steemitimages does it for you without any need to spend the time in other editors. They will send you the resized image.
👍  
properties (23)
post_id48,881,168
authorespoem
permlinkre-effofex-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t195006338z
categoryutopian-io
json_metadata"{"community": "busy", "app": "busy/2.4.0", "tags": ["utopian-io"]}"
created2018-05-16 19:50:09
last_update2018-05-16 19:50:09
depth2
children2
net_rshares1,414,638,854
last_payout2018-05-23 19:50:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length156
author_reputation59,186,440,518,630
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@effofex ·
Wanted to drop you a note. I just updated my semi-weekly log to use that and it's been super helpful.  I also made good use of the explanation on the blank space between divs and images to fix a bug that cropped up occasionally.
properties (22)
post_id49,043,149
authoreffofex
permlinkre-espoem-re-effofex-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180517t210430779z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-05-17 21:04:30
last_update2018-05-17 21:04:30
depth3
children1
net_rshares0
last_payout2018-05-24 21:04:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length228
author_reputation14,417,464,439,057
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ahmeterbay ·
this is amazing helpful post..thanx for it..
properties (22)
post_id48,885,874
authorahmeterbay
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180516t204601401z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "steemit/0.1"}"
created2018-05-16 20:46:00
last_update2018-05-16 20:46:00
depth1
children0
net_rshares0
last_payout2018-05-23 20:46:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length44
author_reputation5,769,140,438,102
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@espoem ·
Another tip:

Do you know Stackedit Markdown editor? Now they have a Chrome extension that lets you use Stackedit on other sites as well.

- https://chrome.google.com/webstore/detail/stackedit-markdown-extens/ajehldoplanpchfokmeempkekhnhmoha
- https://github.com/benweet/stackedit

Works in Busy and Steemit. You need to first input the urls of the sites in the list but then the whole editor is enabled and you can use the editor and do not need to write most of the command by hand.
properties (22)
post_id48,972,409
authorespoem
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180517t115513126z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-05-17 11:55:15
last_update2018-05-17 11:55:15
depth1
children0
net_rshares0
last_payout2018-05-24 11:55:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length484
author_reputation59,186,440,518,630
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rezaarmada ·
very good information for me, I have read it and tried to follow it, but my weakness is I can not do it if just read the instructions only. but someone has to guide me to do it. I hope anyone can help me more ..
properties (22)
post_id49,019,195
authorrezaarmada
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180517t173705264z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-05-17 17:37:12
last_update2018-05-17 17:37:12
depth1
children0
net_rshares0
last_payout2018-05-24 17:37:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length211
author_reputation205,221,199,749
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@carpet.duck ·
Really clean tutorial @espoem! Resteeming this one, a lot of poeple I chat to and introduce Markdown too are a bit daunted, I'll probably refer them to this :)
properties (22)
post_id49,068,433
authorcarpet.duck
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180518t011353336z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "busy/2.4.0", "community": "busy"}"
created2018-05-18 01:13:54
last_update2018-05-18 01:13:54
depth1
children0
net_rshares0
last_payout2018-05-25 01:13:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length159
author_reputation310,614,855,298
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@arulkomand4n ·
Complete tutorial.  👍👍👍
👍  
properties (23)
post_id49,125,389
authorarulkomand4n
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180518t101749787z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "steemit/0.1"}"
created2018-05-18 10:17:54
last_update2018-05-18 10:17:54
depth1
children0
net_rshares1,321,298,724
last_payout2018-05-25 10:17:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length23
author_reputation50,247,112,669
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@heros ·
Thank you! This post will help me.
properties (22)
post_id49,295,832
authorheros
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180519t131333666z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-05-19 13:13:33
last_update2018-05-19 13:13:33
depth1
children0
net_rshares0
last_payout2018-05-26 13:13:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length34
author_reputation436,515,832,240
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@steemfunder ·
Today I learned how to resize images on steemit. Thanks so much. That was bothering me.
properties (22)
post_id49,308,544
authorsteemfunder
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180519t150148918z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-05-19 15:01:48
last_update2018-05-19 15:01:48
depth1
children0
net_rshares0
last_payout2018-05-26 15:01:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length87
author_reputation124,292,362,915
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@leeart ·
This is really helpful tips in making your blogs presentable.  What I like about busy is that some of these are already provided for you.

I also use <div class"pull-left > insert image < /div> to align left, change left to right to align right images.
properties (22)
post_id49,382,170
authorleeart
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180520t032009802z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-05-20 03:20:06
last_update2018-05-20 03:20:06
depth1
children2
net_rshares0
last_payout2018-05-27 03:20:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length252
author_reputation53,020,576,363,049
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@espoem ·
It is true that Busy has a toolbar in the editor for some of the basic formatting commands and the editor supports shortcuts too. However, not everything is in the toolbar so, for example, the alignment must be done manually.
properties (22)
post_id49,402,703
authorespoem
permlinkre-leeart-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180520t070515807z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "busy/2.4.0", "community": "busy"}"
created2018-05-20 07:05:18
last_update2018-05-20 07:05:18
depth2
children1
net_rshares0
last_payout2018-05-27 07:05:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length225
author_reputation59,186,440,518,630
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@leeart ·
Yes but it makes steeming easier at least because of those tools already available rather than manually doing it.
properties (22)
post_id49,403,431
authorleeart
permlinkre-espoem-re-leeart-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180520t071312139z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "app": "steemit/0.1"}"
created2018-05-20 07:13:09
last_update2018-05-20 07:13:09
depth3
children0
net_rshares0
last_payout2018-05-27 07:13:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length113
author_reputation53,020,576,363,049
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rikaz87 ·
hello @espoem. goodjob. this is a very useful tutorial. I resteemed. thanks for sharing.
properties (22)
post_id49,466,723
authorrikaz87
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180520t164258266z
categoryutopian-io
json_metadata"{"tags": ["utopian-io"], "users": ["espoem"], "app": "steemit/0.1"}"
created2018-05-20 16:43:09
last_update2018-05-20 16:43:09
depth1
children0
net_rshares0
last_payout2018-05-27 16:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length88
author_reputation17,601,738,132,884
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@maravond ·
Very nice tutorial :D
👍  
properties (23)
post_id50,130,223
authormaravond
permlinkre-espoem-2018524t2139446z
categoryutopian-io
json_metadata"{"community": "esteem", "app": "esteem/1.6.0", "format": "markdown+html", "tags": ["utopian-io", "tutorials", "blog", "markdown", "busy"]}"
created2018-05-24 19:39:45
last_update2018-05-24 19:39:45
depth1
children0
net_rshares375,273,697
last_payout2018-05-31 19:39:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length21
author_reputation1,380,384,264
root_title"Make your posts look great in Steemit and Busy"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@drsensor ·
Hi @espoem, I wonder is there a way to reduce font size without using sequence of `<sup><sup>... ` or `<sub><sub>... `?
properties (22)
post_id50,147,581
authordrsensor
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180524t221826903z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"], "users": ["espoem"]}"
created2018-05-24 22:18:30
last_update2018-05-24 22:18:30
depth1
children1
net_rshares0
last_payout2018-05-31 22:18:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length119
author_reputation17,692,034,507,824
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@espoem ·
Hey, unfortunately, I was not able to find the answer for this question. According to https://www.steem.center/index.php and other posts that are linked inside, nobody could discover the magic sequence that would allow us in more flexible edits with html.

I suppose that sequence of superscripts and subscripts is the best thing we have if we want to get smaller fon size.
properties (22)
post_id50,149,231
authorespoem
permlinkre-drsensor-re-espoem-make-your-posts-look-great-in-steemit-and-busy-20180524t223341610z
categoryutopian-io
json_metadata"{"community": "busy", "tags": ["utopian-io"], "app": "busy/2.4.0"}"
created2018-05-24 22:33:45
last_update2018-05-24 22:33:45
depth2
children0
net_rshares0
last_payout2018-05-31 22:33:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length373
author_reputation59,186,440,518,630
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@duarte9sousa ·
Very helpfull! I am new...So this is amazing for me. Thank you.
properties (22)
post_id51,860,706
authorduarte9sousa
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180606t020002913z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-06-06 02:00:03
last_update2018-06-06 02:00:03
depth1
children0
net_rshares0
last_payout2018-06-13 02:00:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length63
author_reputation1,321,633,721,392
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@greenprogrammer ·
# Great Tutorial
     <h1> Thank You</h1>
https://cdn.pixabay.com/photo/2016/06/15/16/16/man-1459246_640.png
👍  
properties (23)
post_id54,100,520
authorgreenprogrammer
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180623t212405672z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"image":["https:\/\/cdn.pixabay.com\/photo\/2016\/06\/15\/16\/16\/man-1459246_640.png"],"app":"steemit\/0.1"}
created2018-06-23 21:24:06
last_update2018-06-23 21:24:06
depth1
children0
net_rshares587,927,488
last_payout2018-06-30 21:24:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length108
author_reputation0
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@mickeyberry · (edited)
Thanks this is really helpful and I @mickeyberry  just followed you. but I am having a problem: my post has a lot of space at the bottom - one need that is scoll some distance before getting to the upvote, share and reply icon. How do I close it @espoem
properties (22)
post_id63,012,630
authormickeyberry
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20180922t050531945z
categoryutopian-io
json_metadata{"users":["mickeyberry","espoem"],"tags":["utopian-io"],"app":"steemit\/0.1"}
created2018-09-22 05:05:36
last_update2018-09-22 05:07:27
depth1
children0
net_rshares0
last_payout2018-09-29 05:05:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length253
author_reputation91,903,771,336
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tehshikari ·
Awesome!
properties (22)
post_id65,516,208
authortehshikari
permlinkre-espoem-make-your-posts-look-great-in-steemit-and-busy-20181105t100243901z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2018-11-05 10:02:45
last_update2018-11-05 10:02:45
depth1
children0
net_rshares0
last_payout2018-11-12 10:02:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length8
author_reputation376,318,488,374
root_title"Make your posts look great in Steemit and Busy"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000