Nate Mielnik

Results 38 comments of Nate Mielnik

@durgeshahire4 I believe you can do this by passing in `contentDefault` and/or `contentFA` options when instantiating `MediumEditorTable` itself. These are the options by default: ``` js contentDefault: 'TBL' contentFA: ''...

@sielay or @yazonnile any chance you could try to fix the merge conflict and push this up again? We'll be sure to get this merged quickly this time, we've been...

I think this is a really interesting idea, it could be useful to group together sets of options into 'modes', or just implement these modes as new functionality if there...

I would look into whether you can have a drag handle for the sortable parts, instead of it being the entire element including the editable part. It seems like the...

Unfortunately there isn't a support team, we're truly open source where the health of the editor relies heavily on help from its users. Fixes to medium-editor generally come from folks...

Potentially related issues: #1121 + #857

We are discussing the font-size feature as part of issue #376 and pull request #494 We can start a discussion on how we'd like to do font-color as part of...

Similar to fontsize, the browsers have native font color support via `document.execCommand('foreColor', false, '#ffffff')`. Similar to font size, this will result in a `font` tag being created, but this will...

It seems like there might be something we could do inside the editor to help support extensions like this. It's worth thinking about. Worst case, we should consider adding this...

An updated version of that code that would work with v5 would be something like this: ``` js /** * Custom `color picker` extension */ var ColorPickerExtension = MediumEditor.extensions.button.extend({ name:...