From 22ea59dc3e9958e9ba827a3f65af47c8387d7670 Mon Sep 17 00:00:00 2001 From: Chris Angelico Date: Fri, 28 Jun 2024 22:06:34 +1000 Subject: [PATCH] Mention the converter in the docos --- tips.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tips.md b/tips.md index 9664e10..56f6422 100644 --- a/tips.md +++ b/tips.md @@ -12,3 +12,11 @@ afterward by chaining: ``` set_content(DOM("#selectelem"), [OPTION(...), OPTION(...)]).value = some_val; ``` + +## Converting existing HTML and SVG + +Take advantage of a [quick conversion tool](convert.html) to do the bulk of the work. Some formatting +may want to be adjusted, and the necessary imports will need to be added (eg using autoimport), but +the majority of the translation should work correctly. + +Suitable for HTML snippets, SVG images, and probably most other XML documents.