add some tips for blogging to my default.md

master
Adam Veldhousen 4 years ago
parent b71e9ae9b2
commit 0d238ed8a0
Signed by: adam
GPG Key ID: 6DB29003C6DD1E4B

@ -4,100 +4,31 @@ date: {{ .Date }}
draft: true draft: true
tags: [] tags: []
--- ---
Headers
# Header 1 # Default post template
## Header 2
### Header 3
#### Header 4 ####
##### Header 5 #####
###### Header 6 ######
*Emphasize* _emphasize_ ## Writing tips
**Strong** __Strong__ 1. Find a good topic and commit to it
A [link](http://example.com "Title"). eg how to get started blogging
Some text with [a link][1] and another [link][2].
[1]: http://example.com/ "Title" 2. Make your goals and audience specific
[2]: http://example.org/ "Title" Who is my Audience: eg People who want to start blogging, especially about technical topics, but havent done it yet.
What is my Goal: eg. Give people a concrete set of steps and pointers so they can get started.
Logo: ![Alt](/wp.png "Title") 3. Have a beginning, middle, and end
Smaller logo: ![Alt][1]
[1]: /wp-smaller.png "Title"
Linked logo: [![alt text](/wp-smaller.png)] (http://wordpress.com/ "Title") 4. Get feedback and iterate
Lists 5. Add finishing touches: packaging, publication, and promotion
1. Item From [freeCodeCamp: How to write a great technical blog post][1]
2. Item
* Mixed
* Mixed
- or dash
3. Item
Blockquotes [1]: https://www.freecodecamp.org/news/how-to-write-a-great-technical-blog-post-414c414b67f6/
> Quoted text.
> > Quoted quote.
> * Quoted ## Syntax highlighting example
> * List
```go {linenos=table,hl_lines=8 15-17,linenostart=199}
Quoted text.
Quoted quote.
Quoted
List
Preformatted
Begin each line with
two spaces or more to
make text look
e x a c t l y
like you type i
t.
Begin each line with
two spaces or more to
make text look
e x a c t l y
like you type i
t.
Code
`This is code`
This is code
Code block
~~~~
This is a
piece of code
in a block
~~~~
```
This too
```
Syntax highlighting
```css
#button {
border: none;
}
```
Example code
```go
{{<highlight go "linenos=table,hl_lines=8 15-17,linenostart=199">}}
// GetTitleFunc returns a func that can be used to transform a string to // GetTitleFunc returns a func that can be used to transform a string to
// title case. // title case.
// //
@ -120,5 +51,4 @@ func GetTitleFunc(style string) func(s string) string {
return tc.Title return tc.Title
} }
} }
{{</highlight>}}
``` ```

Loading…
Cancel
Save