Hi,
After observing the jcr content structure,I am using curl to update the parsys rich text content for content/<mywebsite>/<myPage>/jcr:content/par/text/text.
This is the curl command I am using.
curl -u admin:admin -F"par/jcr:primaryType=nt:unstructured" -F"par/sling:resourceType=foundation/components/parsys" -F"par/text/text=not rich text" http://localhost:4502/content/mywebsite/en/Products/jcr:content
This only works if I put plain text for par/text/text="not rich text", How can i embed html tags in the curl such as -F"par/text/text=<tag>some rich text</tag>"?
[img]2014-06-08_17-04-30.png[/img]
Thank you