Search
 
SCRIPT & CODE EXAMPLE
 

HTML

yaml multiline string

# Use > most of the time: interior line breaks are stripped out, although you get one at the end:

key: >
  Your long
  string here.


# Use | if you want those linebreaks to be preserved as 
 (for instance, embedded markdown with paragraphs).

key: |
  ### Heading

  * Bullet
  * Points

# Use >- or |- instead if you don't want a linebreak appended at the end.
# Use "..." if you need to split lines in the middle of words or want to literally type linebreaks as 
:

key: "Antidisestab
 lishmentarianism.

Get on it."
Comment

yaml multiline string

Key: >
  This is a very long sentence
  that spans several lines in the YAML
  but which will be rendered as a string
  with only a single carriage return appended to the end.
  
# You can use the "block chomping indicator" to eliminate the trailing line break, as follows:

Key: >-
  This is a very long sentence
  that spans several lines in the YAML
  but which will be rendered as a string
  with NO carriage returns.
Comment

PREVIOUS NEXT
Code Example
Html :: html domain 
Html :: password setCustomValidity html5 
Html :: nav-pills class bootstrap 
Html :: list of web error codes 
Html :: flexbox column layout 
Html :: http code 206 
Html :: html pdf template 
Html :: add accordion in bootstrap 
Html :: javascript access collections of elements 
Html :: html play audio programmatically 
Html :: disabled button by attr 
Html :: carousel with javascript 
Html :: making spinner in css 
Html :: createjs 
Html :: multilevel list html 
Html :: express js search example 
Html :: wrap text around image bootstrap 
Html :: how to mask input in html as phone numbr 
Html :: html5 table 
Html :: hange the anchor tag so it links to example.com: 
Html :: livewire wire:targer multiple target 
Html :: textbox readonly 
Html :: git compare files with different names 
Html :: Creating WebLinks in a ReadME 
Html :: checkbox true odoo 13 
Html :: how to make an iframe 
Html :: hightcharts font 
Html :: date 
Html :: py-script run external program 
Html :: html banana script 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =