Forum Discussion
TariqHussain
8 years agoBoss
jaread83 - There is no alternative context object which is mentioned in the documentation. However, as a workaround, you can remove all the HTML using velocity method.
Can you give a try to below two methods.
${note.getBody().replace("</?[^>]+/?>", "")}
${note.getBody().replaceAll("</?[^>]+/?>", "")}
I found this from here.