Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jira: How do I put a text after a nested list?

Tags:

jira

In Jira, how do I put a text after a nested list in the context of the current numbered top level list? I have problems with indentation and numbering.
Desired:

 1. one
    Text before nested list
        • List item
        • List item
    Text after nested list 
 2. two

Without empty line before "Text after nested list" I get wrong indent:

 1. one
    Text before nested list
        • List item
        • List item
        Text after nested list 
 2. two

With empty line I also have wrong number:

 1. one
    Text before nested list
        • List item
        • List item
 Text after nested list 
 1. two
like image 202
basin Avatar asked May 13 '13 12:05

basin


People also ask

How do I create a sub bullet in Jira?

In the new Jira issue experience, you can use the tab key to indent to create a sub-list.

How do you indent a description in Jira?

Just use Tab for indent and SHIFT Tab for outdent, works fine.

How do I enable text formatting in Jira?

From the top navigation bar select Administration > System. Go to the User Interface section (in the left-side menu) and select Rich text editor. Select the Enable rich text editing for users toggle to enable or disable the editor.


1 Answers

You could do a work around like

# one {panel:borderStyle=none}
Text before nested list
* list item
* list item

Text after nestes list {panel}
# two

You apparently would get kind of additional line breaks around the panel (margin), but if that doesn't bother you, you're good to go. :)

like image 137
Seika85 Avatar answered Sep 28 '22 10:09

Seika85