Chris Sewell
Chris Sewell
Heya, yeh unfortunately this URL is not recognised by default in CommonMark, see e.g. [this example](https://markdown-it.github.io/#md3=%7B%22source%22%3A%22%5BClick%20me%5D%28file%3A%2F%2F%2F%2F%2Ffoo.com%2FdataXYZ%2Fdocumentation.pdf%29%22%2C%22defaults%22%3A%7B%22html%22%3Afalse%2C%22xhtmlOut%22%3Afalse%2C%22breaks%22%3Afalse%2C%22langPrefix%22%3A%22language-%22%2C%22linkify%22%3Atrue%2C%22typographer%22%3Atrue%2C%22_highlight%22%3Atrue%2C%22_strict%22%3Afalse%2C%22_view%22%3A%22html%22%7D%7D) It might be difficult to override this behaviour perhaps overriding: https://github.com/executablebooks/markdown-it-py/blob/cde6906489c570fd3912ed0a1a6e21ae058348f7/markdown_it/main.py#L313, but I'm not...
Hey @uvidyadharan, thanks for the feedback, however I fear that this may not be something that myst-parser itself can directly affect, since the conversion to LaTeX is handled upstream by...
nope should definitely be a block level cheers
> You could open a ticket with recommonmark, but I see that package is now deprecated, so we might need to move away from it. The README recommends using MyST...
> If MyST can output to a plain docutils/Sphinx document tree It can indeed 👍 Yeh same, I probably won’t have much/any time in September anyway, but certainly something I...
I have a simple solution for this, that could easily be merged into the core code: ```python from collections import OrderedDict import click class CustomOption(click.Option): def __init__(self, *args, **kwargs): self.help_group...
> I'm not sure about putting into click core itself I'll leave that up to you :) I'm happy sub-classing, but obviously bringing in to core protects against any API...
> It'd be nice if mynb-st could support that right out of the box So, my opinion is that this is not something that myst-nb should support specifically... because `myst-nb`...
This may be of note: https://github.com/useblocks/sphinx-collections
Definitely interested in standardising this! I guess in terms of HTML5 we are looking to cover both: ```html My caption ... ``` ```html ... My caption ``` --- > It...