slang icon indicating copy to clipboard operation
slang copied to clipboard

Rich Text cannot be parsed correctly

Open hamberluo opened this issue 2 years ago • 0 comments

current format only support space

"agreement(rich)": "you have read and agreed {{term(Terms of Service)}} and {{privacy(Privacy Policy)}}.",

param don't support

  1. {{term(Terms-of-Service)}}
  2. {{term(Terms of Service >)}}

another problem result is camel case, but i need retain original text

		term('TermsOfService'),
		const TextSpan(text: ' and '),
		privacy('PrivacyPolicy'),

hamberluo avatar Aug 09 '22 01:08 hamberluo