# Starting a line with a tag creates a headline instead of a tag

**URL:** https://meta.discourse.org/t/starting-a-line-with-a-tag-creates-a-headline-instead-of-a-tag/54421
**Category:** Support
**Created:** [12월 17, 2016, 1:16오후 UTC](https://meta.discourse.org/t/starting-a-line-with-a-tag-creates-a-headline-instead-of-a-tag/54421 "2016-12-17T13:16:14Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![rriemann](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/rriemann/32/115238_2.png) [@rriemann](https://meta.discourse.org/u/rriemann)
#### Post date: [12월 17, 2016, 1:16오후 UTC](https://meta.discourse.org/t/starting-a-line-with-a-tag-creates-a-headline-instead-of-a-tag/54421/1 "2016-12-17T13:16:14Z")

</div>

Continuing the discussion from [Add a link to a mentioned tag when posting via mail](https://meta.discourse.org/t/add-a-link-to-a-mentioned-tag-when-posting-via-mail/54062/2):

Hello, I just tested the tagging feature per mail. Hence, I wrote something like `#tagname::tag` in my mail. My mail client creates hard breaks after 80 signs to not have too long lines. By chance, it happened that a line was starting with tag tag, which made it a headline instead of a tag. The same problem arises when starting a new line with a tag in the online post composer:  
#see-this::tag

---

<div class="post-metadata">

### Author: ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)
#### Post date: [12월 17, 2016, 3:03오후 UTC](https://meta.discourse.org/t/starting-a-line-with-a-tag-creates-a-headline-instead-of-a-tag/54421/2 "2016-12-17T15:03:06Z")

</div>

That’s just the way markdown works.

---

<div class="post-metadata">

### Author: ![jomaxro](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jomaxro/32/126216_2.png) [@jomaxro](https://meta.discourse.org/u/jomaxro)
#### Post date: [12월 17, 2016, 4:24오후 UTC](https://meta.discourse.org/t/starting-a-line-with-a-tag-creates-a-headline-instead-of-a-tag/54421/3 "2016-12-17T16:24:13Z")

</div>

Yep, not a bug. Easy fix, put a space in front of it, just like you’d do if you want to prevent oneboxing. Also note that it will not offer auto-complete if you start at the front of a line.

No space:

```plaintext
#pr-welcome::tag

```

#pr-welcome

* * *

With space:

```plaintext
 #pr-welcome::tag 

```

#pr-welcome

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [12월 17, 2016, 9:56오후 UTC](https://meta.discourse.org/t/starting-a-line-with-a-tag-creates-a-headline-instead-of-a-tag/54421/4 "2016-12-17T21:56:16Z")

</div>


