Is there an easy way to use glyphicons or fontawesome icons within the rich text?
Please have a look at the following CKEditor plugin I post here as an illustration of the question. https://www.michaeljanea.com/ckeditor/bootstrap-glyphicon
I failed to find a similar plugin for Wagtail.
A functional solution though having a sub-quality UX is to use raw HTML editing. Google provides few URLs on HTML editing within Hallo.js in Wagtail CMS. The most useful are as follows:
After implementing the hook, it is possible to add glyphicons (and fontawesome), e.g. by adding
<ul class="fa-ul">
<li><i class="glyphicon glyphicon-user"></i>User icon</li>
<li><i class="glyphicon glyphicon-home"></i>Home icon</li>
</ul>