Andrey Shaposhnikov

Results 9 comments of Andrey Shaposhnikov

Yes. This will handle the trouble with them go for each other. Dynamic parameters, no issues in DOM and no errors with TS. ``` function handleRangeChange (values: [number, number]): void...

Anyway, if you are reading this issue, here: ### Slider.d.ts ``` declare module 'react-range-slider-input' { type Orientation = 'vertical' | 'horizontal' type Step = number | 'any' export default function...

Did you managed to solve HTML to markdown transform in correct way? The library itself saving HTML, which is weird. I guess its better to save result in markdown, and...

@artknight You are absolutely right. I just left it work with HTML format and dangerouslyInsertHTML + DomPufiry. It is enough. But if you want simple, fast, component based library for...

Same here. I am writing in English, and if you write "just a text" into the editor, in result it will be: "just a tex" :D

![image](https://github.com/user-attachments/assets/ce8f4cf2-882a-46ab-9013-b0fba8a4dffb) I am used like that. But Quill is not property laved after converted to markdown, due to quill is not actually make markdown, he just adding class to HTML,...

> Have you found any solution to render the existing text as a markdown? I have a similar issue to the one mentioned in the question. Markdown is only rendered...

@mjp0 Did you find out, if that possible to make onReset() on everything? Cause all ref is returning is { current: null }. I am assuming we need to do...

@mjp0 Here, take ``` 'use client' import React, { forwardRef, useRef, useState } from 'react' import dynamic from 'next/dynamic' import { MDXEditorMethods } from '@mdxeditor/editor' import '../../app/(main)/faq/markdown-updated.css' import '@mdxeditor/editor/style.css' const...