Rename and clean up a little

main
Felix Martin 2022-10-23 10:56:23 -04:00
parent 697cb22e09
commit 28d6c654e4
5 changed files with 3 additions and 4 deletions

3
.gitignore vendored
View File

@ -6,8 +6,7 @@ __pycache__/
.vscode
pokemon
tmp
poos.epub
test.epub
ptoos.epub
# C extensions
*.so

View File

@ -42,7 +42,7 @@ def patch_chapter(chapter: epub.EpubHtml, pokemon_lookup: Dict[str, Pokemon]):
tag = soup.new_tag("a")
tag.string = word
tag.attrs["href"] = f"np_pokedex.xhtml#{POKEMON_ID_PREFIX}{key}"
# tag.attrs["style"] = "color:black;text-decoration:none"
tag.attrs["style"] = "color:black;text-decoration:none"
return tag
def patch_string(section: NavigableString) -> List:

View File

@ -16,6 +16,6 @@ def main():
try:
ptoos_epub = sys.argv[1]
except IndexError:
ptoos_epub = "poos.epub"
ptoos_epub = "ptoos.epub"
pokemon = src.pokemon.get_pokemon()
src.epub.patch(ptoos_epub, pokemon)

View File