-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More complex comment (particularly code block) syntax added
- Loading branch information
1 parent
17c73c2
commit 3970ec6
Showing
2 changed files
with
54 additions
and
48 deletions.
There are no files selected for viewing
52 changes: 28 additions & 24 deletions
52
test/example/assets/sass/partials/comments/_comments-sass.sass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,77 @@ | ||
/* # Sass Comments */ | ||
|
||
/* | ||
Comment 2a | ||
Comment 4a | ||
========== | ||
Description | ||
<p>Example</p> | ||
Description 4a | ||
<p>Example 4a</p> | ||
*/ | ||
/* | ||
Comment 2b | ||
Comment 4b | ||
========== | ||
Description | ||
Description 4b | ||
``` | ||
Example | ||
<p>Example 4b</p> | ||
``` | ||
*/ | ||
/* | ||
Comment 2c | ||
Comment 4c | ||
========== | ||
Description | ||
Description 4c | ||
<p>Example</p> | ||
<p>Example 4c</p> | ||
*/ | ||
/* | ||
Comment 2d | ||
Comment 4d | ||
========== | ||
Description | ||
Description 4d | ||
``` | ||
<p>Example</p> | ||
<p>Example 4d</p> | ||
``` | ||
*/ | ||
|
||
/* | ||
* Comment 3a | ||
* Comment 5a | ||
* ========== | ||
* Description | ||
* <p>Example</p> | ||
* Description 5a | ||
* <p>Example 5a</p> | ||
*/ | ||
/* | ||
* Comment 3b | ||
* Comment 5b | ||
* ========== | ||
* Description | ||
* Description 5b | ||
* ``` | ||
* Example | ||
* <p>Example 5b</p> | ||
* ``` | ||
*/ | ||
/* | ||
* | ||
* Comment 3c | ||
* Comment 5c | ||
* ========== | ||
* | ||
* Description | ||
* Description 5c | ||
* | ||
* <p>Example</p> | ||
* <p>Example 5ca</p> | ||
* <p>Example 5cb</p> | ||
* | ||
*/ | ||
/* | ||
* | ||
* Comment 3d | ||
* Comment 5d | ||
* ========== | ||
* | ||
* Description | ||
* Description 5d | ||
* | ||
* ``` | ||
* <p>Example</p> | ||
* <p>Example 5da</p> | ||
* <p>Example 5db</p> | ||
* ``` | ||
* | ||
*/ |
50 changes: 26 additions & 24 deletions
50
test/example/assets/sass/partials/comments/_comments-scss.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,110 +1,112 @@ | ||
/* # Scss Comments */ | ||
|
||
/* | ||
Comment 1a | ||
========== | ||
Description | ||
<p>Example</p> | ||
Description 1a | ||
<p>Example 1a</p> | ||
*/ | ||
/* | ||
Comment 1b | ||
========== | ||
Description | ||
Description 1b | ||
``` | ||
Example | ||
<p>Example 1b</p> | ||
``` | ||
*/ | ||
/* | ||
Comment 1c | ||
========== | ||
Description | ||
Description 1c | ||
<p>Example</p> | ||
<p>Example 1c</p> | ||
*/ | ||
/* | ||
Comment 1d | ||
========== | ||
Description | ||
Description 1d | ||
``` | ||
<p>Example</p> | ||
<p>Example 1d</p> | ||
``` | ||
*/ | ||
|
||
/* | ||
Comment 2a | ||
========== | ||
Description | ||
<p>Example</p> | ||
Description 2a | ||
<p>Example 2a</p> | ||
*/ | ||
/* | ||
Comment 2b | ||
========== | ||
Description | ||
Description 2b | ||
``` | ||
Example | ||
<p>Example 2b</p> | ||
``` | ||
*/ | ||
/* | ||
Comment 2c | ||
========== | ||
Description | ||
Description 2c | ||
<p>Example</p> | ||
<p>Example 2c</p> | ||
*/ | ||
/* | ||
Comment 2d | ||
========== | ||
Description | ||
Description 2d | ||
``` | ||
<p>Example</p> | ||
<p>Example 2d</p> | ||
``` | ||
*/ | ||
|
||
/* | ||
* Comment 3a | ||
* ========== | ||
* Description | ||
* <p>Example</p> | ||
* Description 3a | ||
* <p>Example 3a</p> | ||
*/ | ||
/* | ||
* Comment 3b | ||
* ========== | ||
* Description | ||
* Description 3b | ||
* ``` | ||
* Example | ||
* <p>Example 3b</p> | ||
* ``` | ||
*/ | ||
/* | ||
* | ||
* Comment 3c | ||
* ========== | ||
* | ||
* Description | ||
* Description 3c | ||
* | ||
* <p>Example</p> | ||
* <p>Example 3c</p> | ||
* | ||
*/ | ||
/* | ||
* | ||
* Comment 3d | ||
* ========== | ||
* | ||
* Description | ||
* Description 3d | ||
* | ||
* ``` | ||
* <p>Example</p> | ||
* <p>Example 3d</p> | ||
* ``` | ||
* | ||
*/ |