Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

markdown guide fixes + typo #100

Merged
merged 1 commit into from
Oct 13, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 46 additions & 2 deletions pages/en/contrib/Markdown-style-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,57 @@ as well as GitHub (and npm, as applicable).

## Headers
1. Always put spaces after the hash(es)
2. Only put one `<h1>` header in a readme (*all* `<h1>`s are removed by Jekyll, which adds its own).
3. Precede headers with a blank line

### Examples
````
# This
## This

### This
#Not this

##Not this

###Not this

# This gets removed

# This one gets removed as well

## This is fine

Here's a paragraph of text
## This isn't a heading!! Needs a newline above
````

## Blockquotes

1. Only **unfenced** code blocks may go in block quotes. If highlighting is crucial, consider removing the block from the blockquote.

### Examples
```
> This:
>
> console.log('indented 4 spaces');
>
> NOT this:
>
> ```js
> console.log('indented 4 spaces');
> ```
>
```

## Links

1. To convert a URL to a link, wrap the URL in angle brackets.

### Examples

```
https://this.will.not/create/a/link
<https://this.WILL.create/a/link>
```

## Fenced Code blocks
1. Always preceed with an empty line
4 changes: 2 additions & 2 deletions pages/en/lb2/Connecting-to-Microsoft-SQL-Server.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
title: "Microsoft SQL Server connector tutorial"
lang: en
layout: readme
source: loopback-example-database-mysql
source: loopback-example-database-mssql
keywords: LoopBack
tags:
sidebar: lb2_sidebar
permalink: /doc/en/lb2/Connecting-to-Microsoft-SQL-Server.html
summary: A brief tutorial on using the LoopBack MS SQL connector.
---

{% include readmes/loopback-example-database-mysql.md %}
{% include readmes/loopback-example-database-mssql.md %}