# Copy pasting nested lists from Word into a post

**URL:** https://meta.discourse.org/t/copy-pasting-nested-lists-from-word-into-a-post/158575
**Category:** Support
**Created:** [July 23, 2020, 4:18am UTC](https://meta.discourse.org/t/copy-pasting-nested-lists-from-word-into-a-post/158575 "2020-07-23T04:18:43Z")
**Posts on this page:** 1
**Showing post:** 6

<div class="post-metadata">

### Author: ![tobiaseigen](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tobiaseigen/32/539204_2.png) [@tobiaseigen](https://meta.discourse.org/u/tobiaseigen)
#### Post date: [July 23, 2020, 1:55pm UTC](https://meta.discourse.org/t/copy-pasting-nested-lists-from-word-into-a-post/158575/6 "2020-07-23T13:55:25Z")

</div>

Sure, I am able to replicate the issue you are describing. I am not sure why the bold and links are not copy/pasting properly as they usually do - but do know that hierarchical lists are handled differently enough in markdown that you will be better off just writing them directly in markdown. You will not be able to do mixed styling eg I for level 1, A for level 2, 1 for level 3. Levels are created using spacing, e.g.

To get this:

1. item one
  1. item 2
    1. item 3

use this markdown:

```plaintext
1. item one
   1. item 2
      1. item 3 

```

A nicer way to create nicely organized content is using headings - that way you can also use [DiscoTOC](https://meta.discourse.org/t/discotoc-automatic-table-of-contents/111143) to display a lovely table of contents.

To get this:

# 1. item one

## A. item 2

### 1. item 3

use this markdown:

```plaintext
# 1. item one
 
## A. item 2

### 1. item 3 

```

---

_[View the full topic](https://meta.discourse.org/t/copy-pasting-nested-lists-from-word-into-a-post/158575)._
