-
Can an image have its width specified, and be able to be viewed in both markdown (say, Github markdown) and latex? The following works to display the image in latex, but does not work with pure markdown.
And I believe you cannot use HTML tags to specify size to display the image within latex. Am I missing any options? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, thanks for using the Markdown package for TeX.
Github-Flavored Markdown does not support attributes on images. Therefore, you would not be able to use the code you mentioned. Other flavors of Markdown, such as the one recognized by Pandoc with the
You might use HTML tags. When you enable the option |
Beta Was this translation helpful? Give feedback.
Hi, thanks for using the Markdown package for TeX.
Github-Flavored Markdown does not support attributes on images. Therefore, you would not be able to use the code you mentioned.
Other flavors of Markdown, such as the one recognized by Pandoc with the
link_attributes
extension enabled (see the corresponding optionlinkAttributes
for the Markdown package), would allow you to specify attributes on images. However, this would not solve your issue …