mirror of
https://github.com/danog/sass-site.git
synced 2025-01-10 06:58:43 +01:00
1532553ef2
* main: review Use JSON args for compatibility tag typo typo Use kwargs for {% compatibility %} tag. clearer example line breaks add missing @use silence sass warnings Do not autoformat md files combine more markdown blocks indentation for remainder of docs indentation for syntax docs indentation for style-rules docs indentation for cli docs indentation for breaking-changes Strip indentation from more paired shortcodes. Try out standard indentation
10 lines
365 B
Plaintext
10 lines
365 B
Plaintext
{% codeExample 'example-list-index', false %}
|
|
@debug list.index(1px solid red, 1px); // 1
|
|
@debug list.index(1px solid red, solid); // 2
|
|
@debug list.index(1px solid red, dashed); // null
|
|
===
|
|
@debug list.index(1px solid red, 1px) // 1
|
|
@debug list.index(1px solid red, solid) // 2
|
|
@debug list.index(1px solid red, dashed) // null
|
|
{% endcodeExample %}
|