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

Enable markdown extensions #1

Open
LeonarddeR opened this issue Mar 29, 2017 · 5 comments
Open

Enable markdown extensions #1

LeonarddeR opened this issue Mar 29, 2017 · 5 comments

Comments

@LeonarddeR
Copy link
Contributor

There are some handy markdown extensions available which can improve the quality of documentation. I propose enabling the following extensions by default;

  • markdown.extensions.extra
  • markdown.extensions.smarty
  • markdown.extensions.toc
@cary-rowen
Copy link

Hi,

I recommend enabling markdown.extensions.tables to use table styles in the add-on help documentation.

Thanks.

@school510587
Copy link

Hi all,

I have just tried to enable markdown.extensions.tables in buildVars.py, but I find that the generated table has no border at all.

Should I modify style.css manually? Or, would AddonTemplate give a better solution?

Thanks!

@josephsl
Copy link
Contributor

josephsl commented Jun 17, 2021 via email

@josephsl
Copy link
Contributor

josephsl commented Jan 1, 2024

Hi,

January 2024 update: any updates?

Thanks.

@school510587
Copy link

@josephsl,

I don't know how to solve the problem with the latest template. Python markdown module does not set border="1" for the tables. So far, I just add some necessary CSS in to style.css:

table {
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
}

Could anyone tell me how to prevent to modify it by myself? Thanks.

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

No branches or pull requests

4 participants