Skip to content

Commit

Permalink
[#158] Fix two Sphinx build warnings
Browse files Browse the repository at this point in the history
- txt is not a Pygment lexer name. We should use text to indicate no highlighting instead of txt.
- There's no _static directory with static assets, so I removed that from conf.py.
  • Loading branch information
riley-harper committed Nov 1, 2024
1 parent 6f7004d commit f69e639
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/_sources/running_the_program.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ hlink $ list

To see information about the steps of the task you are currently on, run `get_steps`. You should see something that looks like this:

```txt
```text
Link task: Preprocessing
step 0: register raw dataframes
Tables used:
Expand Down
2 changes: 1 addition & 1 deletion docs/running_the_program.html
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ <h3>Running Linking Tasks and Steps<a class="headerlink" href="#running-linking-
</pre></div>
</div>
<p>To see information about the steps of the task you are currently on, run <code class="docutils literal notranslate"><span class="pre">get_steps</span></code>. You should see something that looks like this:</p>
<div class="highlight-txt notranslate"><div class="highlight"><pre><span></span>Link task: Preprocessing
<div class="highlight-text notranslate"><div class="highlight"><pre><span></span>Link task: Preprocessing
step 0: register raw dataframes
Tables used:
Tables created:
Expand Down
2 changes: 1 addition & 1 deletion sphinx-docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ["_static"]
html_static_path = []
2 changes: 1 addition & 1 deletion sphinx-docs/running_the_program.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ hlink $ list

To see information about the steps of the task you are currently on, run `get_steps`. You should see something that looks like this:

```txt
```text
Link task: Preprocessing
step 0: register raw dataframes
Tables used:
Expand Down

0 comments on commit f69e639

Please sign in to comment.