Skip to content

Commit d836736

Browse files
committed
Revise extended syntax
1 parent d5087da commit d836736

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

_extended-syntax/availability.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Not all Markdown applications support extended syntax elements. You'll need to c
77

88
### Lightweight Markup Languages
99

10-
There are several lightweight markup languages that are *supersets* of Markdown. They include Gruber's basic syntax and build upon it by adding additional elements like tables, code blocks, syntax highlighting, URL auto-linking, and footnotes. Many of the most popular Markdown applications use one of the following lightweight markup languages:
10+
There are several lightweight markup languages that are *supersets* of Markdown. They include basic syntax and build upon it by adding additional elements like tables, code blocks, syntax highlighting, URL auto-linking, and footnotes. Many of the most popular Markdown applications use one of the following lightweight markup languages:
1111

1212
- [CommonMark](https://commonmark.org)
1313
- [GitHub Flavored Markdown (GFM)](https://github.github.com/gfm/)

_extended-syntax/highlight.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ This isn't common, but some Markdown processors allow you to highlight text. The
99
I need to highlight these ==very important words==.
1010
```
1111

12-
The HTML looks like this:
12+
The rendered output looks like this:
1313

14-
```html
1514
I need to highlight these <mark>very important words</mark>.
16-
```
1715

18-
The rendered output looks like this:
16+
Alternatively, if your Markdown application supports [HTML](/basic-syntax/#html), you can use the `mark` HTML tag.
1917

20-
I need to highlight these <mark>very important words</mark>.
18+
```html
19+
I need to highlight these <mark>very important words</mark>.
20+
```

_extended-syntax/overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ title: Overview
33
syntax-id: overview
44
---
55

6-
The [basic syntax](/basic-syntax) outlined in John Gruber's original design document added many of the elements needed on a day-to-day basis, but it wasn't enough for some people. That's where extended syntax comes in.
6+
The [basic syntax](/basic-syntax) outlined in the original Markdown design document added many of the elements needed on a day-to-day basis, but it wasn't enough for some people. That's where extended syntax comes in.
77

88
Several individuals and organizations took it upon themselves to extend the basic syntax by adding additional elements like tables, code blocks, syntax highlighting, URL auto-linking, and footnotes. These elements can be enabled by using a lightweight markup language that builds upon the basic Markdown syntax, or by adding an extension to a compatible Markdown processor.

extended-syntax.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: Extended Syntax
44
description: Advanced features that build on the basic Markdown syntax.
5-
last_modified_at: 2021-12-29
5+
last_modified_at: 2022-01-03
66
---
77

88
{% include syntax.html type="extended" syntax-id="overview" %}

0 commit comments

Comments
 (0)