-
Notifications
You must be signed in to change notification settings - Fork 25
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
Feature Request: Custom Counter Style #22
Comments
We can also add a slightly more enhanced style as well. Example: |
How the numbers are presented is presentation logic and really belongs in the application responsible for rendering the result. The application could be ConTeXt, LaTeX, CSS (in case of HTML), and so forth. While it would be convenient to put it in the Markdown, it seems to move away from the separation of content and presentation. |
This is a very good point, @DaveJarvis. I know this is easy to do in LaTeX, but I'm not sure how I would do it in CSS -- or if the pandoc-fignos html is written correctly to take advantage of this possibility. Can you comment further? |
Consider the following Markdown document:
Converted to HTML: <ol><li>Line 1</li><li>Line 2</li><li>Line 3</li></ol> With CSS, you can change how the number format is presented to the reader throughout the entire document: ol {list-style-type: upper-roman;} Now, arguably, if you wanted to convert only one list in the document (instead of all lists), you'd have to find a different way to style it. This might mean marking up the document a little differently to describe the intent of the section, such as:
This becomes: <div class="algorithm">
<ol><li>Line 1</li><li>Line 2</li><li>Line 3</li></ol>
</div> And it's trivial to change the CSS for only that single list accordingly: div.algorithm ol {list-style-type: upper-roman;} ConTeXt is syntactically different, but the concept is the same. I don't know if pandoc-fignos is written to take advantage of this possibility. |
Hi, @tomduck. Can I customize the counter style of figures and figure references? A
counter-style
variable could be used to set the style:Styles could be:
arabic
-> 1, 2, 3, ...alph
-> a, b, c, ...Alph
-> A, B, C, ...roman
-> i, ii, iii, ...Roman
-> I, II, III, ...Thank you.
The text was updated successfully, but these errors were encountered: