Sample Yaml File

Sample Yaml File

Below is an example of a book saved in Yaml format, with explanations of its parts


Title: Test
//The title of the book when loaded

Author: AkiraAkiba
//The author of the book when loaded

Pages:
- 'This is page one.

  Everything between the apostrophes is part of this page.'
- 'This is page two'
//The contents of the book's pages. An individual page is the text between each - ' '
//To use an apostrophe within a page, replace it with a double apostrophe
//For linebreaks, add one extra linebreak to the number of linebreaks you want
//
//For example:
//
//- 'Testing
//
//  line
//
//
//  breaks.'
//
//becomes:
//
//Testing
//line
//
//breaks.


Comments

Posts Quoted:
Reply
Clear All Quotes