From 65db5549f4945c7e4daf586839bb3f619646c253 Mon Sep 17 00:00:00 2001 From: Sam <30656767+samcottle@users.noreply.github.com> Date: Sat, 24 Nov 2018 02:19:15 +0100 Subject: [PATCH] Corrected markdown and code sample formatting (#23374) * Corrected markdown and code sample formatting Added code highlighting to `

`, to prevent it being interpreted as a new paragraph. Also made indentation in the code sample consistent. * Fixed typo and formatting --- guide/english/html/elements/paragraph/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/html/elements/paragraph/index.md b/guide/english/html/elements/paragraph/index.md index d4de480b77..e4e49f4acd 100644 --- a/guide/english/html/elements/paragraph/index.md +++ b/guide/english/html/elements/paragraph/index.md @@ -3,13 +3,13 @@ title: Paragraph Tag --- ## Paragraph -The HTML

element represents a paragraph of text.

usually represents a block of text that it separated from other blocks by vertical blank space. +The HTML `

` element represents a paragraph of text. `

` usually represents a block of text that is separated from other blocks by vertical blank space. ### Example ``` html

- This is a paragraph + This is a paragraph

This is another paragraph @@ -18,4 +18,4 @@ The HTML

element represents a paragraph of text.

usually represents a bl #### More Information: -https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p +- [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p)