Skip to content

Commit

Permalink
first paragraph update
Browse files Browse the repository at this point in the history
  • Loading branch information
memerchik authored Sep 6, 2024
1 parent c0e23d3 commit 93059e3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion preflight.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@

BASE_URL = "https://journalofdigitalhistory.org/en/notebook-viewer/"

FIRST_PARAGRAPH = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
f = open("./article-check-script/config.json")

config_file = json.load(f)

f.close()

FIRST_PARAGRAPH = config_file["first_paragraph"]


def encode_notebook_url(url):
Expand Down

0 comments on commit 93059e3

Please sign in to comment.