New User: Formatting that first blog and more

in #newbieresteemday5 years ago

2-10-19

Formatting that first Blog and more

When it comes to making that first blog post everyone wants it to look nice and organized, and that it looks like you know what you are doing. This is not an easy thing to do. If you are familiar with HTML, then that will be some help, but not a whole lot since a lot of the HTML code is not available to use. So they have come up with what is called markdown, or markup language. It is simple to use most times, but when you start to mix it with HTML, things can go awry.

You can use BOLD, Italic, and a COMBO of both of them. Those are pretty much your choices when wanting to make your text look different. By using the "`" tic mark next to the number 1 key you can highlight code so it shows up and has no effect.

You can use **BOLD**, *Italic*, and a ***COMBO*** of both of them. Those are pretty much your choices when wanting to make your text look different.

The asterisk and the number used on either side of what you want to highlight determines the look: Bold two asterisks, Italic one asterisks, and Italic bold combo three asterisks.

The asterisk is used a lot in markup another thing it is used for is making a bulleted list. You start a line with * then it will begin a bulleted list for you. asterisk and space

  • item 1
  • Item 2
    third item
    as you can see you will need to end the list at some point, or not depends on what you want to accomplish. by not ending it all your further text is going to be indented to the bulleted line. To end a list is pretty simply you need to put in a line break or a return function so a blank line is shown.
    I ended the above paragraph with a return/enter key on the keyboard as you can see no effect, so you need to put a blank line in where you want to end the list at. So two enter/return key presses will do it.

Now this line is no longer indented to the list margin. So an asterisk followed by a space will give you a bulleted list.

* item 1

If for some reason you want to start a line with an asterisk and space but do not want to have a list:
* not a list
* Not a list item 2
then you will need to preceed the asterisk with a forward slash \ the forward slash will not show up it is telling the code (asterisk in this case), to not work.
\* not a list

While we are talking list: suppose you wanted a numbered list. That is pretty simple;

  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4

Simply start your list with a number, it does not matter what number any number followed by a . (period), will generate a numbered list.

7. List item 1
1. List item 2
1. List item 3
22. List item 4

The above is what was typed for the 4 item list. So if you wanted to start a list with number 10. I do not know how to do that, any number with a period after it will start a numbered list if it is at the beginning of a line and will always start with 1. Doesn't matter what number you type the first number in the list is always 1.

  1. List item 1
    • list item 1's bullet list (four blank spaces)
    • second bullet item in list item (four Blank spaces)
  2. List item 2
    a. list item 2 alpha list (no spaces really needed) (it is a good idea however to use the two spaces, it makes it easier to see when you go and look back at your code)
    b. list item 2 beta item (no spaces really needed)
  3. List Item 3
    a. alpha (no spaces needed)
    1. second number nested list (four spaces needed)
  4. List in list and list
    • the bullet list
      a. the bullet list alpha list (no spaces needed)
      1. the bullet list alpha list with a numbered list. (four spaces needed)
  5. list item 5?

This took a bit of doing and remembering and experimenting on my part. If you want to have a bullet list contained in a list, (List Item 1), then you will need to use 4 spaces before the asterisk. When creating nested list list spacing is the key. Futz with it, experiment with it, play with it, and you will get the listing style you want.


Okay you may want to know about how I did the headline. But first the skinny bar, above a couple of ways to make that horizontal rule. One is going back to our old friend above the asterisk, type three on a line and then hit the return key and you get the Horizontal rule, you could also use three --- dashes and get the same effect:

A horizontal line made with the three dashes.
---
***
Both make the horizontal line.


Headlines

How do they do them. Well it's not with the asterisk but with the pound (#) key. There are six levels of headlines one pounder, then two, three, and so on to number six. The amount of pound keys you use may seem like it should make for bigger headlines but the smaller the number used the bigger. One # is the biggest. Here they are to see:

one pound headline

two

three

four

five
six

####### seven, as you can see seven does not work. below is the code:
# one pound headline
## two
### three
#### four
##### five
###### six
####### seven


Center this

Yes that's all well and good, but how did you get the headline in the middle of the page?

  • I do not know of the Markup center function, so this is where HTML code gets mixed in. So to use HTML code you need to us code holders, and that is the angle brackets <> and the backslash /. Almost all HTML code needs to be closed out. to close out HTML code you need to type </HTML Code used> to close it our <center></center>. So this code - # *** <center>Center this</center>*** gives this:

Center this

# ***<center>Center this</center>*** code view.


That's the bare basics of formatting that can be used, to make your post. There are a lot help pages on formating post, just type in steemit post formatting or something similar and you will get a lot of options to look through, I am sure one of them will be easy/easier to use.


Making a Link

Pretty easy to do in markup. Start with the [, (right next to the "P" on the keyboard), the squared bracket. [This is the text that will show as a link] not that it is contained by the brackets. (https://steemit.com/@bashadow) use the parentheses to hold the link you want the text to go to . No space is used between the ]( so you end up with this [This is the text that will show as a link](https://steemit.com/@bashadow) and that will display as below, in nice steemit green.
This is the text that will show as a link
And that is all there is to making a link in steemit.

So how do I link a picture?
A. I am not sure in markup how to do this. This is where I use HTML to get the job done.

  1. It is a two part process first you need the link to go to in this case my home page, the HTML link looks like this <a href="https://steemit.com/@bashadow">
  2. second you need to use HTML to identify the image, <img src="https://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmRUfcQys1oDyV5fPjKmQbaJmKfeSic6EcVZJDAZWeVMNk/footer%202.jpg">img src is Image Source (where is it)
  3. Then being as it is HTML code we need to close it out with a </a>, then you have a working picture link.
  4. The whole code for the image link, including centering:<center><a href="https://steemit.com/@bashadow"><img src="https://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmRUfcQys1oDyV5fPjKmQbaJmKfeSic6EcVZJDAZWeVMNk/footer%202.jpg"></a></center>

I hope that helps.

First post in the series, password and banners explained

Any question just leave them in the comments. Something else that would help you? Just let me know and I will try.

Sort:  

One of my followers had her account stolen by an ex boyfriend. He changed the password and is powering down. She needs to set up a new account. What is the best way for her to do that?

If she made here account through steemit- - - have her visit and read this page.

https://steemit.com/recover_account_step_1

One very very important thing to remember when she get her account back is to not delete any comments.

This link is from last year:
https://steemit.com/security/@steemcleaners/phishing-attacks-and-recovery

it is steemcleaners and some things may have changed but not by much.

It has a step by step processes to recover the account. Any liquid steem will be gone, but she has 7 days to save what was powered up, so first action after getting the account back would be to stop the power down.

I think she does not even want to try the recovery process. He had the password because he helped her set up the account. It was not a valuable account and I think she will feel better making a clean start, but I will give her those links. I remember reading that there are communities who are helping fund new accounts to help them get set up. Do you think something like that would work for her?

Yes, there is the PIFC (@pifc) run by @thedarkhorse, he also runs a few minnow booster programs. Also there is @paulag and her redfish power up league, and of course just other people, that may delegate some SP to help new users out. Even I have given out SP to help new users, or causes in the past, I am sure she will be able to find sponsors that can help, I have one small delegation out right now to an individual, and would be willing to help a friend of yours out.

An SP of 50 is pretty much the bare minimum needed for an active individual, 80SP pretty much allows a person to do everything. And an active individual can, with that starting amount, build their account to 50SP in a month or two.

Good suggestions. I'll let you know what she decides to do.

Hello neighbor to the North, I'm just outside of Chicago. Hope you didn't have to deal with the ice storm we did today.

Anyways as @bashadow said I run run @pifc and @minnowbuilder along with an ongoing free delegation for smaller members to help get them going personally.

@pifc will help as your friend can come and "Pimp" their post each week in our "Pimp Your Post" initiative. It's just an easy way for people to promote one of their posts and engage with others. As a bonus PIFC gives out votes and a Bounty. Also those who get involved with PIFC tend to do well long term and gain a lot of support from others in the community.

@minnowbuilder maybe able to help after a discussion. Would want to know what the previous account is to see the type of content is and would need a couple new posts made. The Minnow Builder Program has 2 parts, 1st is shares that can be purchased for a guaranteed daily upvote and the 2nd part gives back to the community to help "Build Minnows" by providing free daily upvotes to deserving steemians.

I personally also do a Steem Power Delegation Giveaway which could be very useful to her for getting back on her feet. 50sp is the most I give out to one person, but that is enough to get an account started.

If she needs a free account let me know. Have a few people that have free account creation tokens that can help out. Message me on discord about the situation if you would like any help from me. thedarkhorse #6765 is my name there.

Thanks for all this information. Her account name was/is @ khey and you can see she was willing and able. He told her he would give her the account back but he was going to keep the password. Which means that she would just be working for him and he could drain it again anytime you wanted to. Seems kinda senseless. I'm hopeful that she will walk away from it and take the initiative and start something new. But I'm uncertain how that will all play out. I will let you know if I hear more.

We have been getting ice and snow all day long. And I hear there's another storm coming over the weekend? I am so done with winter.

No way I'd ever build an account that someone else holds the keys too. She needs to pull whatever she can from it and start over.

This winter has been a hard one. My kids just left for Arizona for a week...kind of wishing I was going with them.

Congratulations! Your post has been selected as a daily Steemit truffle! It is listed on rank 9 of all contributions awarded today. You can find the TOP DAILY TRUFFLE PICKS HERE.

I upvoted your contribution because to my mind your post is at least 6 SBD worth and should receive 175 votes. It's now up to the lovely Steemit community to make this come true.

I am TrufflePig, an Artificial Intelligence Bot that helps minnows and content curators using Machine Learning. If you are curious how I select content, you can find an explanation here!

Have a nice day and sincerely yours,
trufflepig
TrufflePig

great post and tutorial. Resteeming and sharing on twitter.

Cool info! Already knew the commands, but it's valuable info for the ones starting here; good job!

Posted using Partiko Android

Hi @bashadow!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your UA account score is currently 4.209 which ranks you at #2940 across all Steem accounts.
Your rank has not changed in the last three days.

In our last Algorithmic Curation Round, consisting of 221 contributions, your post is ranked at #80.

Evaluation of your UA score:
  • Some people are already following you, keep going!
  • The readers appreciate your great work!
  • Good user engagement!

Feel free to join our @steem-ua Discord server

Coin Marketplace

STEEM 0.30
TRX 0.11
JST 0.033
BTC 64271.38
ETH 3157.43
USDT 1.00
SBD 4.25