Skip to content

Commit 1729715

Browse files
committed
📝 Update readme
1 parent 8e58d34 commit 1729715

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,15 @@ All instructions can be found at [draculatheme.com/jetbrains](https://draculathe
1717

1818
## Dracula PRO
1919

20-
Meet the premium version with tons of goodies and be more productive. [Get it now](https://gumroad.com/a/477820019).
20+
[![Dracula Pro](./docs/screenshots/dracula-pro.png)](https://gumroad.com/a/477820019)
21+
22+
Dracula PRO is a color scheme and UI theme tailored for programming.
23+
24+
Made for terminal emulators, code editors, and syntax highlighters.
25+
26+
Designed to be aesthetically pleasing while keeping you focused.
27+
28+
[Become a Vampire](https://gumroad.com/a/477820019).
2129

2230
## Sponsors
2331

docs/screenshots/dracula-pro.png

28.3 KB
Loading

scripts/readme.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ def build_readme(src: str, dest: str):
3030
for p in team_h2.find_all_next('p', limit=2):
3131
p.decompose()
3232
team_h2.decompose()
33+
# Replace Dracula Pro screenshot URL
34+
dracula_pro_h2 = soup.find('h2', text="Dracula PRO")
35+
dracula_pro_img_link = dracula_pro_h2.find_next('p').find('a').find('img')
36+
dracula_pro_img_link['src'] = 'https://github.com/dracula/jetbrains/blob/master/docs/screenshots/dracula-pro.png'
3337
# Replace Contribution Guide URL
3438
contribution_h2 = soup.find('h2', text="Contribution")
3539
contribution_guide_link = contribution_h2.find_next('p').find('a')

0 commit comments

Comments
 (0)