Joshua Burnett

Results 25 comments of Joshua Burnett

The ability to render markdown inside of and html block. Both PHP Markdown Extra and MultiMarkdown support it. I had it working in my "dead" markdown-plus project using regex. Docs...

I was trying but I could never really get my head around it. I was using this as an example OneOrMore(AtxInline(), addAsChild()) and push(new BlockQuoteNode(withIndicesShifted(parseInternal(inner), (Integer)peek()).getChildren())) I finally figured out...

Just curious about this. I never could figure it out and get it working.

I created an issue here too with a workaround https://github.com/jgthms/bulma/issues/2805

@longwa what did you figure out here? This is a big blocker for us as there is a huge performance hit across our code to hydrate/initialize the entities on a...

@longwa @puneetbehl I added a test here that shows the problem. https://github.com/grails/gorm-hibernate5/pull/624 The recent issue is somewhat related https://github.com/grails/gorm-hibernate5/issues/464. - The HibernateProxyHandler was extending a class that still used JavaAssist....

added the lib here that I think solves the main issues. https://github.com/yakworks/hibernate-groovy. PR with example is submitted too.

NAMING_STRATEGIES is a public static and I know making FOREIGN_KEY_SUFFIX public static as well is not ideal but any chance we can get the pull request merged so we can...

Thanks for feedback Graeme. Not sure I totally follow? Currently NAMING_STRATEGIES is public which allows it to be be set. The problem we face is the the FOREIGN_KEY_SUFFIX is a...

@graemerocher would love to get the ability to change the FOREIGN_KEY_SUFFIX into core here. What if we remove the _ prefix and made it Id when the `naming_strategy: org.hibernate.cfg.DefaultNamingStrategy` which...