Dave

Results 8 comments of Dave

@Kovah maybe it is useful to ship a php markdown library for parsing in templates?

@Kovah the markdown js library is only for the _preview_ function of the editor. I've added [parsedown](https://github.com/erusev/parsedown) for parse markdown within templates, just use ``_markdown($output)``

@Kovah do you have any thoughts?

Works flawless on my Macbook Air M1 and my Macbook Pro with M1 Max Chip with Brave (Chromium). 🤷‍♂️ What browser you are using?

You dont need any payloadProvider, just use `.set` instead of adding your elements.

DatabindingBinder: ```kotlin package com.fyeo.util.mva3 import android.view.LayoutInflater import android.view.ViewGroup import androidx.annotation.LayoutRes import androidx.databinding.DataBindingUtil import androidx.databinding.ViewDataBinding import mva3.adapter.ItemBinder abstract class DataBindingItemBinder(@LayoutRes private val layoutRes: Int) : ItemBinder() { override fun createViewHolder(parent: ViewGroup):...

Change: `maxDate:jQuery('#date_end').val()?jQuery('#date_end').val():false` to `maxDate:jQuery('#date_end').val()?getDate(jQuery('#date_end').val()):false` and add the following function: `function getDate(datum){ fn = datum.split("-"); return fn[0]+'/'+fn[1]+'/'+fn[2]; }` for german time (d.m.Y) use this function: `function getDate(datum){ fn = datum.split("."); return...