Skip to content

Commit

Permalink
[SPARK-30832][DOCS] SQL function doc headers should link to anchors
Browse files Browse the repository at this point in the history
### Why are the changes needed?

In most of our docs, you can click on a heading to immediately get an anchor link to that specific section of the docs. This is very handy when you are reading the docs and want to share a link to a specific part.

The SQL function docs are lacking this. This PR adds this convenience to the SQL function docs.

Here's the impact on the generated HTML.

Before this PR:

```html
<h3 id="array_join">array_join</h3>
```

After this PR:

```html
<h3 id="array_join"><a class="toclink" href="#array_join">array_join</a></h3>
```

### Does this PR introduce any user-facing change?

No.

### How was this patch tested?

I built the docs manually and reviewed the results in my browser.

Closes apache#27585 from nchammas/SPARK-30832-sql-doc-headers.

Authored-by: Nicholas Chammas <nicholas.chammas@gmail.com>
Signed-off-by: Sean Owen <srowen@gmail.com>
  • Loading branch information
nchammas authored and srowen committed Feb 18, 2020
1 parent d8d3ce5 commit 4ed9b88
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sql/mkdocs.yml
Expand Up @@ -17,3 +17,6 @@ site_name: Spark SQL, Built-in Functions
theme: readthedocs
pages:
- 'Functions': 'index.md'
markdown_extensions:
- toc:
anchorlink: True

0 comments on commit 4ed9b88

Please sign in to comment.