Guidance last updated:
Jun 6, 2023
We think of pull requests as a conversation starter.
Please feel free to contact us:
- Slack:
#design-support
channel
@designers
team
- Github team:
bugcrowd/design
We push through changes as pull requests on
GitHub and track the project internally.
Writing Sass? Check out Our Sass guidelines for
helpful advice and our shared principles.
Guidance last updated:
Jun 6, 2023
These docs are written in Markdown, a simple markup language with a plain text formatting syntax.
It’s easy to write and read, plus it converts readily into HTML
(and other formats too).
We use kramdown which has
some nifty features, not limited to:
- Smart typography:
- em dash: ‘
---
’ becomes (—)
- apostrophe/single quotes: ‘
'oh la-la!'
’ becomes (‘oh la-la!’)
- apostrophe/single quotes: ‘
"oh la-la!"
’ becomes (“oh la-la!”)
- ellipsis: ‘
...
’ becomes (‘…’)
- Definition lists (
<dl>
, <dt>
, & <dd>
).
Check out the kramdown syntax documentation
for a full overview.
Guidance last updated:
Jun 6, 2023
Use color to make code syntax more easy to read.
You can add syntax highlighting to fenced code blocks:
``` ruby
def what?
42
end
```
yields:
We use rouge for this
functionality.
Guidance last updated:
Jun 6, 2023
There’s a custom Liquid filter
available for Haml.
It lives in _plugins/haml_filter.rb
.