Albert
Albert
Could you specify which part should be internationalised? caoutchouc itself is language-agnostic but the documentation and sharecaou could be translated, is that what you were referring to?
It seems that npm doesn't support using different versions of a manpage so we'd have to change the distribution method. Also currently the translation of manpages is not supported in...
The way pandoc is downloaded is through ``` const pandocBaseUrl = "https://github.com/corollari/caoutchouc/raw/master/vendor" const pandoc = new BinWrapper() .src(`${pandocBaseUrl}/osx/pandoc`, 'darwin') .src(`${pandocBaseUrl}/linux/pandoc`, 'linux') .src(`${pandocBaseUrl}/win/x86/pandoc.exe`, 'win32', 'x86') .src(`${pandocBaseUrl}/win/x64/pandoc.exe`, 'win32', 'x64') .dest(path.join(__dirname, 'pandoc')) .use(process.platform...
The reason why I set caou to use bin-wrapper to install caou is because I found that that the last versions of pandoc produce a latex output that is incorrect...
Yep that looks like it, back when I debugged it I ended up fixing several errors manually but that just uncovered other errors. That may no longer be true for...
I've started looking at the source code of bin-wrapper and it seems that the problem you encountered wasn't because bin-wrapper couldn't correctly detect your OS but because of some other...
> I recently changed to ubuntu. I tried installing caou, and I got the same error msg That's strange, as I've been using travis, which uses ubuntu, to produce all...
> So maybe something fishy is going on when you try to do a global installation... Yeah that seems to be the case. I've tried again to reproduce the issue...
> So I was thinking ahead a little bit and being able to modify the margins, and having markdown images (online ones) working seem like good features. Great! I personally...
Main differences: - **AsciiMath**: pandoc doesn't support it but caou does - **LaTeX**: caou supports the direct embedding of LaTeX but pandoc doesn't (it does but it's extremely limited). Admittedly...