You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.adoc
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,40 +40,40 @@ Include any key values pairs and method options that are required to enable a us
40
40
41
41
For example, this is good:
42
42
43
-
`
43
+
----
44
44
tinymce.init({
45
45
selector: 'textarea', // change this value according to your HTML
46
46
plugins: 'codesample',
47
47
toolbar: 'codesample'
48
48
});
49
-
`
49
+
----
50
50
51
51
This is not:
52
52
53
-
`+
53
+
----
54
54
tinymce.init({
55
55
...
56
56
plugins: 'codesample',
57
57
toolbar: 'codesample'
58
58
...
59
59
});
60
-
+`
60
+
----
61
61
62
62
=== URLs and links
63
63
64
64
Resources to be linked take the form of placing the linked text between brackets and the URL between parenthesis. Linking an external resource looks like this:
65
65
66
-
`+
66
+
----
67
67
hello, [text to link](http://www.example.com) to the URL example.com.
68
-
+`
68
+
----
69
69
70
70
=== Codepens
71
71
72
72
Codepens can be added to content using the "codepen.html" include, such as:
73
73
74
-
`
74
+
----
75
75
{% include codepen.html id="basic-example" %}
76
-
`
76
+
----
77
77
78
78
There are several options for this include file - please see `_includes/codepen.html` for details.
79
79
@@ -83,7 +83,7 @@ The source for each CodePen is store in the `_includes/codepens/` directory.
83
83
84
84
Every page should have a meta section starting at line 1 containing information that is both informative and system critical. If you are creating a page or editing one that currently has inadequate meta information, please read the comments next to the default meta fields below.
85
85
86
-
`
86
+
----
87
87
--- // Three dashes at the start and end of the meta section, must be included.
88
88
layout: default // In most cases leave this as 'default'.
89
89
title: // The nav.yml references this so it must be included and it should be brief.
@@ -92,7 +92,7 @@ description_short: // Short description for the grid layouts.
92
92
description: // Detailed description at page level for the header section under the title.
93
93
keywords: // Space-separated list of keywords in the content.
0 commit comments