2022.2

Table Of Contents
Tip: ClicktheEdgesbuttononthetoolbartomakebordersofelementsvisibleontheDesigntab.
TheborderswillnotbevisibleonthePreviewtaborintheoutput.
Litmus
Thereareseveraltoolstopreviewhowemailwillberenderedonavarietyofclients.Werecommend
usingLitmus.SupportforLitmusisintegratedintotheDesigner;theSendTestEmaildialoghasan
optionto"SendtoLitmus".
Emmet
Emmetisapluginthatenablesthelightning-fastcreationofHTMLcodethoughtheuseofasimpleand
effectiveshortcutlanguage.TheEmmetfunctionalityisavailableintheHTMLandCSSsourceeditors
ofConnectDesigner.EmmettransformsabbreviationsforHTMLelementsandCSSpropertiestothe
respectivesourcecode.TheexpansionofabbreviationsisinvokedwiththeTabkey.
IntheSourcetaboftheWorkspace,youcouldforexampletypediv.row.Thisistheabbreviationfora
<div>elementwiththeclassrow.
OnpressingtheTabkey,thisabbreviationistransformedto:
<div class="row"></div>
ToquicklyenteratablewiththeID'green',onerow,andtwocellsinthatrow,type:
table#green>tr>td*2
OnpressingtheTabkey,thisistransformedto:
<table id="green">
<tr>
<td></td>
<td></td>
</tr>
</table>
AllstandardabbreviationscanbefoundinEmmet'sdocumentation:Abbreviations.
TolearnmoreaboutEmmet,pleaseseetheirwebsite:Emmet.ioandtheEmmet.iodocumentation:
http://docs.emmet.io/.
Preferences
TochangethewayEmmetworksintheDesigner,selectWindow > Preferences,andinthePrefer-
encesdialog,selectEmmet;see"Emmetpreferences"onpage358.
Page 152