For the complete documentation index, see llms.txt. This page is also available as Markdown.

🚀Quick Start | SA5 Rich Text

How to Easily Add SA5's Rich Text Enhancements to Your Webflow Site

How to Add the Library

Add this script to the site wide custom code HEAD area of your site. If you are only using it on specific pages, you can add it to page-specific custom code instead.

<!-- Sygnal Attributes 5 | Rich Text --> 
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/sygnaltech/webflow-util@5.6.0/dist/css/webflow-richtext.css"> 
<script defer src="https://cdn.jsdelivr.net/gh/sygnaltech/webflow-util@5.6.0/dist/nocode/webflow-richtext.js"></script>

Add the custom attributes for the features you need, described in each feature separately.

SA5 Library Developers

For SA5 library developers, use the extended syntax to support Sygnal Devmode and Sygnal DevProxy. These make it easier to develop and test code changes with Webflow sites.

<!-- Sygnal Attributes 5 | Rich Text --> 
<link rel="stylesheet" 
  href="https://cdn.jsdelivr.net/gh/sygnaltech/webflow-util@5.6.0/dist/css/webflow-richtext.css"
  dev-href="http://127.0.0.1:4000/dist/css/webflow-richtext.css"
  group="SA5 Richtext"  
  > 
<script defer 
  src="https://cdn.jsdelivr.net/gh/sygnaltech/webflow-util@5.6.0/dist/nocode/webflow-richtext.js" 
  dev-src="http://127.0.0.1:4000/dist/nocode/webflow-richtext.js"
  group="SA5 Richtext"  
  ></script>

Last updated