Daniel A.A. Pelsmaeker
Daniel A.A. Pelsmaeker
If you decide to translate Markdown Edit, I'd like to help with the Dutch translation. You can use [crowdin](https://crowdin.com/), which is [free for open-source projects](https://crowdin.com/page/open-source-project-setup-request).
I'm not sure, I've only ever been on the translating side of Crowdin. [It supports](https://crowdin.com/page/tour/supported-formats) the [.NET .resx](https://crowdin.com/page/dot-net-resx-localization) format. However, your localization format seems custom.
I stumbled upon the same issue, so here's my minimal test case: ``` \documentclass[twoside,a4paper,11pt]{memoir} \RequireXeTeX \usepackage{tabularx} \usepackage{minted} \begin{document} Text with \mintinline{java}{Inline}. \begin{tabularx}{\linewidth}{ X } Some \mintinline{java}{inline} text.\\ \end{tabularx} \end{document} ```...
It is good to ensure the user is aware of the changes that will be applied, and explicitly consents to applying these changes. However, the current implementation is not achieving...
Another example where it's a problem that endControlFlow inserts a newline. If I want to generate this (Http4K) code: ```kotlin public fun route(): ContractRoute { // Route return "/items" meta...
Thank you, that is a good workaround once one is aware of the issue when using one element. My main issue is that I found it unexpected (and unintuitive and...
I've seen this happen when more than one file has the same name and is being uploaded to the GitHub release. The error message could be better though.
No, no rounds were started in rapid succession. This happened on a three-player multiplayer game on the transition from a scenario (that we played for 10 minutes or more) to...
Thank you for the workaround, I didn't know about the `matrix.include` option. I will try this soon. I don't know how `setup-gradle` works internally, but apparently it can update the...
So in this example it would become: dependencies { compile ('org.metaborg:org.metaborg.core:2.1.0-SNAPSHOT') { transitive=false } compile 'commons-io:commons-io:2.4' shadow 'org.metaborg:org.metaborg.core:2.1.0-SNAPSHOT' } Wouldn't adding `org.metaborg.core` to the `shadow` configuration specify that my project...