-
Notifications
You must be signed in to change notification settings - Fork 18
Two levels ul list #2
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Hi,
Is it possible make two levels ul/ol list?
I have data:
type Ddd struct {
Doc string
Pastabos []string
}
type TemplateData struct {
DocPastabos []Ddd
}
data := TemplateData{
DocPastabos: []Ddd{
{
Doc: "sdfsdf",
Pastabos: []string{
"dfdfdf", "sdfsdfsdf",
},
},
{
Doc: "sdfwerwerwesdf",
Pastabos: []string{
"dfdwerwefdf", "sdfertertertsdfsdf",
},
},
},
}
I get this result in docx:
I need this result:
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working

