= Jira =
 * https://confluence.atlassian.com/jira

== Jira and Confluence Markup ==
{{{
h1. Biggest heading
h3. Big heading
h5. Small heading

- some
- bullet
- points

* some
* bullet
** indented
** bullets
* points

# a
# numbered
# list

||heading 1||heading 2||heading 3||
|cell A1|cell A2|cell A3|
|cell B1|cell B2|cell B3|

*bold text*
_italics_

[title | http://confluence.atlassian.com]
}}}

== JQL (Jira Query Language) ==
 * https://support.atlassian.com/jira-core-cloud/docs/use-advanced-search-with-jira-query-language-jql/
 * Sum time spent 
{{{ 
  (assignee = bob OR assignee = alice) AND (type = "Issue" OR type = Epic) ORDER BY issuetype DESC

  labels in (Labelxyz)
}}}