Skip to content

Commit

Permalink
web app - set header anchor to false
Browse files Browse the repository at this point in the history
  • Loading branch information
claromes committed Jun 24, 2024
1 parent 9798f12 commit 16f9997
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def tweets_exporter(parsed_tweets, username, field_options):
)

st.write(
"This application uses the Wayback Tweets Python package, which can be used either as a module or as a standalone command-line tool. [Read the documentation](https://claromes.github.io/waybacktweets) for more information.." # noqa: E501
"This application uses the Wayback Tweets Python package, which can be used either as a module or as a standalone command-line tool. [Read the documentation](https://claromes.github.io/waybacktweets) for more information." # noqa: E501
)

st.write(
Expand Down Expand Up @@ -248,7 +248,7 @@ def tweets_exporter(parsed_tweets, username, field_options):

# -- HTML -- #

st.header("HTML", divider="gray")
st.header("HTML", divider="gray", anchor=False)
st.write(
f"Visualize tweets more efficiently through `iframes`. Download the @{st.session_state.current_username}'s archived tweets in HTML." # noqa: E501
)
Expand All @@ -269,7 +269,7 @@ def tweets_exporter(parsed_tweets, username, field_options):

# -- CSV -- #

st.header("CSV", divider="gray")
st.header("CSV", divider="gray", anchor=False)
st.write(
"Check the data returned in the dataframe below and download the file."
)
Expand All @@ -292,7 +292,7 @@ def tweets_exporter(parsed_tweets, username, field_options):

# -- JSON -- #

st.header("JSON", divider="gray")
st.header("JSON", divider="gray", anchor=False)
st.write(
"Check the data returned in JSON format below and download the file."
)
Expand Down

0 comments on commit 16f9997

Please sign in to comment.