-
Notifications
You must be signed in to change notification settings - Fork 2
/
example.html
64 lines (62 loc) · 1.37 KB
/
example.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Example</title>
<style>
body, pre {
margin: 0 !important;
}
</style>
<link href="http://prismjs.com/themes/prism.css" rel="stylesheet">
</head>
<body>
<pre class="language-scss"><code>/**
* Description.
*
* @access private
* @throws An exception.
* @todo Write some code maybe?
* @see %hello
* @see $world
* @see some-function
* @see {mixin} baz
* @param {String} $bar - Some string.
* @returns {Map} A random map.
* @group Helpers & dirty hacks
* @link http://sassdoc.com/
*
* @example scss
* $bar: foo('bar');
*/
@function foo($bar) {}
/// @author Foo Bar <[email protected]>
/// @deprecated Hey <http://message/with/link>.
/// @type Bool | Map
/// @prop {String} world [!] - A description.
/// @prop nested - Nested map (something).
/// @prop {String | Bool} nested.foo [bar] - Stuff.
///
/// @example
/// An example!
$hello: (
world: '!',
nested: (
foo: 'bar'
)
);
/**
* @content Content.
* @ignore This does nothing anyway.
* @since 1.0 Useless feature.
*/
@mixin some-mixin() {
@content;
}
</code></pre>
<script src="http://prismjs.com/prism.js"></script>
<script src="http://prismjs.com/components/prism-css.js"></script>
<script src="http://prismjs.com/components/prism-scss.js"></script>
<script src="prism-scss-sassdoc.js"></script>
</body>
</html>