Skip to content

Commit

Permalink
mardown > html formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunkLightTuna committed Jan 30, 2024
1 parent 71c6295 commit 2928577
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/foundry_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def push_release(module):


def get_readme_as_html():
md = MarkdownIt('commonmark', {'breaks': True, 'html': True}).enable('table')
md = MarkdownIt('commonmark', {'html': True}).enable('table')
with open('./README.md', 'r') as readme_file:
readme = readme_file.read()
return md.render(readme)
Expand Down
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# Oronder

Oronder provides deep Discord integration for Foundry Virtual Tabletop. Access your character sheets, roll for downtime activities, schedule sessions and reward exp all without needing to log back into Foundry.
Oronder provides deep Discord integration for Foundry Virtual Tabletop. Access your character sheets, roll for
downtime activities, schedule sessions and reward exp all without needing to log back into Foundry.

Oronder is designed to meet the needs of running a complex Westmarches game with multiple DMs and players, but also shines for single party campaigns.
Oronder is designed to meet the needs of running a complex Westmarches game with multiple DMs and players,
but also shines for single party campaigns.

### Installation Instructions

_The following must be done by the owner of the Discord server you'd like to integrate with._

1. Invite
the [Oronder Bot](https://discord.com/oauth2/authorize?client_id=1064553830810923048&scope=bot+guilds.members.read&permissions=403761728512)
1. Invite the
[Oronder Bot](https://discord.com/oauth2/authorize?client_id=1064553830810923048&scope=bot+guilds.members.read&permissions=403761728512)
to your Discord.
2. Subscribe to the [Oronder Discord](https://discord.gg/27npDAXaCA) to gain access to advanced features.
3. From your Discord:
Expand All @@ -20,4 +22,6 @@ _The following must be done by the owner of the Discord server you'd like to int
Foundry name. For everyone else, you will need to manually add their Discord User Id.
- Click `Save Changes`.

Players should now be able to access characters they own in Foundry from Discord. If a PC is not showing up, ensure that player ownership has been assigned and that the character has a class, race and background.
Players should now be able to access characters they own in Foundry from Discord.
If a PC is not showing up, ensure that player ownership has been assigned and that the character has a class, race and
background.
3 changes: 3 additions & 0 deletions release.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,11 @@ def run_release(release):
match release:
case 'major':
major += 1
minor = 0
revision = 0
case 'minor':
minor += 1
revision = 0
case 'revision':
revision += 1
case _:
Expand Down

0 comments on commit 2928577

Please sign in to comment.