I am going through Drupal 8 theming with twig. It says to use “HTML no editor” text format for a custom block displaying font awesome links. There is no “HTML no editor” option, just basic HTML, restricted HTML, and full HTML. I am using the version Drupal 8.0.1 since that is the version needed for importing the database snapshots.
This is the code I am using for the links:
<ul class="social-icons"> <li><a class="button--icon" target="_blank" href="https://www.facebook.com/PacktPub" title=""><i class="fa fa- facebook"></i></a></li> <li><a class="button--icon" target="_blank" href="https://www.linkedin.com/company/packt-publishing" title=""><i class="fa fa-linkedin"></i></a></li> <li><a class="button--icon" target="_blank" href="https://twitter.com/packtpub" title=""><i class="fa fa-twitter"></i> </a></li> <li><a class="button--icon" target="_blank" href="https://plus.google.com/+packtpublishing/posts" title=""><i class="fa fa-google-plus"></i></a></li> </ul>
How do I get this code to display the font awesome links in a block? Why don’t I have an “HTML no editor” option under text formats?