# Problem in auto-generated documentation with Documenter.jl

**URL:** https://discourse.julialang.org/t/problem-in-auto-generated-documentation-with-documenter-jl/22676
**Category:** General Usage
**Tags:** documenter
**Created:** [April 3, 2019, 4:42am UTC](https://discourse.julialang.org/t/problem-in-auto-generated-documentation-with-documenter-jl/22676 "2019-04-03T04:42:50Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![v-i-s-h](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/v-i-s-h/32/46152_2.png) [@v-i-s-h](https://discourse.julialang.org/u/v-i-s-h)
#### Post date: [April 3, 2019, 4:42am UTC](https://discourse.julialang.org/t/problem-in-auto-generated-documentation-with-documenter-jl/22676/1 "2019-04-03T04:42:50Z")

</div>

I’m updating my package [DiscretePredictors.jl](https://github.com/v-i-s-h/DiscretePredictors.jl) to julia 1.0 from julia 0.6.4.  
I fixed all deprecations and is using Documenter.jl for generating documentation.

When the documentation is generated, I found that some function names are misspelled in the documentation when I use Documenter.jl (~0.22)  
The difference between old and new documentation pages rendered in HTML is shown below:

**Old**

 ![old](https://global.discourse-cdn.com/julialang/original/3X/0/c/0c1df4a886791367e05ce6e84f62690eb9b28342.png)  
Link: [High Level Interface · DiscretePredictors.jl](https://v-i-s-h.github.io/DiscretePredictors.jl/stable/lib/interface/#get_best_symbol-1)

**New**

 ![new](https://global.discourse-cdn.com/julialang/original/3X/c/7/c7a58c0c1c4976e61a94ce114c626a06f49fe8c0.png)  
Link: [High Level Interface · DiscretePredictors.jl](https://v-i-s-h.github.io/DiscretePredictors.jl/latest/lib/interface/#get%5C*best%5C*symbol-1)

It seems like the problem is a confusion between markdown and actual function.  
How can I solve this?

Regards,  
v-i-s-h

---

<div class="post-metadata">

### Author: ![Tamas\_Papp](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tamas_papp/32/25949_2.png) [@Tamas\_Papp](https://discourse.julialang.org/u/Tamas_Papp)
#### Post date: [April 3, 2019, 6:59am UTC](https://discourse.julialang.org/t/problem-in-auto-generated-documentation-with-documenter-jl/22676/2 "2019-04-03T06:59:36Z")

</div>

> [@v-i-s-h](#):
>
> How can I solve this?

In [this file](https://github.com/v-i-s-h/DiscretePredictors.jl/blob/9160ba9091c201ef98e750b07eef1c032760b36e/docs/src/lib/interface.md), you should quote the header names too, eg

```markdown
# `get_best_symbol`

```

---

<div class="post-metadata">

### Author: ![v-i-s-h](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/v-i-s-h/32/46152_2.png) [@v-i-s-h](https://discourse.julialang.org/u/v-i-s-h)
#### Post date: [April 3, 2019, 7:20am UTC](https://discourse.julialang.org/t/problem-in-auto-generated-documentation-with-documenter-jl/22676/3 "2019-04-03T07:20:32Z")

</div>

Thanks a lot @Tamas_Papp. I worked 🙂 .
