Matthew Conlen
Matthew Conlen
If you want to be able to create PDFs or similar it would be possible but you'd have to write a different renderer. For example at some point I hacked...
Thanks for reporting this @aborruso. Can you confirm that things re-compile as expected if you stop and restart the idyll command after making a change? I can take a look...
Hi @aborruso - sorry I haven't been able to take a proper look at this yet. If you are able would you be willing to help debug? The errant behavior...
This makes sense to me. We'd need to edit the CSS file that gets included (https://github.com/idyll-lang/idyll/blob/master/packages/idyll-cli/src/client/_index.html#L36-L41), upgrade the dependency in [idyll-components](https://github.com/idyll-lang/idyll/blob/master/packages/idyll-components/package.json#L50) and make sure the [`Equation` component](https://github.com/idyll-lang/idyll/blob/master/packages/idyll-components/src/equation.js) is functioning properly...
I think we should drop `react-latex-patched` in favor of https://www.npmjs.com/package/react-latex since that one seems to be more widely used and up-to-date.
We should probably also rename `idyll-cli` to `idyll` so that the folder name matches the package name. I think the current naming is more confusing than it is helpful.
Agreed this would be a nice thing to support. Under the hood Idyll uses esbuild, which does have [support for loading typescript files](https://esbuild.github.io/content-types/#typescript). I believe we would need to update...
I've just merged that PR --- thanks for the work on this!
@hemu it would be best to add an additional rule in the lexer, similar for how we special case equation tags here: https://github.com/idyll-lang/idyll/blob/master/packages/idyll-compiler/src/lexer.js#L53-L66. The regex is a little hairy, but...
Thanks for the work on this @michaltakac! Also saw your comment on #314, I think that would be awesome to add - we should discuss syntax for that as well....