Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrect markdown formatting on debug with Rider #23

Closed
wants to merge 1 commit into from

Conversation

LukeEff
Copy link
Contributor

@LukeEff LukeEff commented Mar 27, 2023

In my recent PR #21, I had been previewing my changes against Github/my IDE markdown processor, but as discovered in #22, the wiki is processed with Python's markdown processor--which is far more strict. I went ahead and fixed the indentation spacing and cleaned up a little bit. I generated the HTML to ensure the Rider sections correctly renders using the following script:

import markdown

with open("docs/Mod-Creation/C#-Programming/Debugging-Your-Mods.md", "r", encoding="utf-8") as input_file:
    text = input_file.read()
    html = markdown.markdown(text)
    print(html)

@xiaoxiao921
Copy link
Member

Sorry I won't merge this as there are now conflicts (I have edited the page since then since now the process is a bit less convoluted as I have finally updated the bepinex pack on thunderstore.io with doorstop4 already in it), also PR were not really on the menu since the beginning because the wiki can already be edited by anyone without rigorous checking, the details are all explained there on how the wiki operate: https://github.com/risk-of-thunder/R2Wiki/wiki

If you don't mind you can still push your changes by directly editing the wiki page

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants