Henrik Olsson
Henrik Olsson
I'm having this issue with the following markdown file https://raw.githubusercontent.com/yahoo/gifshot/master/README.md Is there any idea on how to solve this in Prism4j?
Alright, any idea how to solve it? I'm guessing that the check causing the crash is required for something else.
Alright, I think that one slipped when I was comparing everything. I'll get to doing this soon.
Right now the moshi Kotlin support is built on reflection which from what I know is just as bad as in Java. There is work to bring generated adapters for...
Yeah, you're probably right. Some thing to remember when doing this would be to use the [Parcelable support](https://kotlinlang.org/docs/tutorials/android-plugin.html#parcelable) in kotlin. So that we keep the code clean still.
This depends. Some values like lists do benefit from not being returned as null as you don't have to check it for null but any operation on it can be...