Giorgio Garofalo
Giorgio Garofalo
Hello, it would be awesome to have the "sleeping" pose implemented into the API: ```java Method setPose = Entity.class.getDeclaredMethod("setPose", EntityPose.class); setPose.setAccessible(true); setPose.invoke(npc, EntityPose.SLEEPING); connection.sendPacket(new PacketPlayOutEntityMetadata(npc.getId(), npc.getDataWatcher(), false)); ```
Since 9b0584f530ca2694b8be7a4e68141291ed67765b `eu.iamgio.pikt.compiler.AbstractCompiler` exposes the `handleInput(stdin)` function that allows writing to the Kotlin compiler's stdin from Pikt's CLI. The main implementation is handled by `eu.iamgio.pikt.compiler.Interpreter`. It lets the user interact...
This PR fixes multiline headings wrapping around their location number, if numbering is enabled.
### Discussed in #76 A possible approach would be: ```markdown Some content[^1] in a text. .footnote {1} The footnote ```
As Quarkdown grows, the need for official distributions on package managers is becoming a priority. Due to my little time and inexperience on this topic, I'm looking for help by...
This PR changes Quarkdown's conventionally default extension from from `.qmd` to `.qd`, in order to avoid conflicts and ambiguity related to Quarto (#37, #39). It doesn't involve any breaking change...
Hello and thanks for maintaining the Quarkdown package. The [current build file](https://github.com/alerque/aur/blob/2746e1395120e448bb9f7c0b7c775fa38c1bafd7/quarkdown/PKGBUILD) uses `gradle shadowJar`. It works, but it's not the preferred way to build the software, since some resources...
Unexpected behavior occurs when a `` code block is split across pages. - The first block loses its last line (it's present but not displayed). This seems to be fixed...