-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.examples
102 lines (71 loc) · 1.37 KB
/
.examples
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Heading
## Formatting
**Bold**
_Italics_
`$variable`
~~~
1 2 3
4 5
~~~
## Paragraphs
These are all going to be
one the same line
These two paragraphs will be...
...completely separate because they have spaces between them
## Links
[this is a link to the docs index](/docs/home/)
## Ordered list
1. One
2. Two
3. Three
## Unordered list
* Red
* Green
* Blue
## Blurbs
### Note
<div class="cerb-box note">
<p>This is a note.</p>
</div>
### Warning
<div class="cerb-box warning">
<p>This is a dire warning.</p>
</div>
## Code syntax highlighting
### Bash
{% highlight bash %}
sudo apt-get update
{% endhighlight %}
### JSON
{% highlight json %}
{
"package": {
"name": "Customer Satisfaction Workflow",
"cerb_version": "9.0.0",
"revision": 1,
"requires": {
"cerb_version": "9.0.0",
"plugins": [
"cerb.bots.portal.widget"
]
}
}
}
{% endhighlight %}
### PHP
{% highlight php %}
class DevblocksSearchFieldContextKeys {
public $where_key = null;
public $field_key = null;
public $dict_key = null;
function __construct($where_key, $field_key=null, $dict_key=null) {
$this->where_key = $where_key;
$this->field_key = $field_key;
$this->dict_key = $dict_key;
}
};
{% endhighlight %}
## Screenshots
<div class="cerb-screenshot">
<img src="/assets/images/releases/9.0/profile-new-tab.png" class="screenshot">
</div>