amir moghadam

Results 6 comments of amir moghadam

same issue here on some device

this is my editor page ``` import 'package:flutter/material.dart'; import 'package:notus/convert.dart'; import 'package:zefyr/zefyr.dart'; import 'package:html2md/html2md.dart' as html2md; class EditorPage extends StatefulWidget { final String text; final Function setText; EditorPage({this.text, this.setText}); @override...

which list did you mean ? and as far as i know the \n before beginning not required

its decoded with notusMarkdown.decode(markdown) but i try to add this line manually and tell you what happen

@cgestes i do it but throw that error again

i wrote this decoder and its better than notusMarkdown.decode(markdown) but it decode notusMarkdown output ``` NotusDocument _loadNotes() { var markdown = html2md.convert( widget.text, styleOptions: { 'headingStyle': 'atx' } ); if...