Bruksanvisning for nye innlegg
Bruksanvisning for nye innlegg. Lånt fra Chad Baldwins Blogg .
- Posts are written in markdown, if you don’t know it, don’t worry, there’s not much to it. See this post by GitHub to learn some of the basics.
That’s about all you need to know to get started.
Lets create a new blog post
- Navigate to the
_posts
folder on GitHub - Click
Add file
>Create new file
- Name your file
2022-08-16-your-new-blog-post.md
- Set the title of your blog post by using a markdown header
- Write this as the first line
## This is my first blog post
- Write this as the first line
- Add some content…write some random things, whatever you want
- Throw in a code block (code blocks are created by surrounding your code snippet with three backticks at each end and an optional “language hint”), copy paste this in:
```tsql SELECT * FROM sys.tables WHERE [name] = 'SomeTable' ```
- Important note, if you’re using T-SQL code, make sure to use the
tsql
tag. This will tell your site that you want to use the SSMS style formatting.
- Important note, if you’re using T-SQL code, make sure to use the