view tests/test_titlepage.yaml @ 19:6e8d5d95f6b5

Added tag 0.2.1 for changeset db27f548daa8
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 04 Jan 2017 09:19:24 -0800
parents 59fe8cb6190d
children
line wrap: on
line source

---
in: ""
title: {}
out: []
---
in: "\n"
title: {}
out:
    - "!"
---
in: "\n\n"
title: {}
out:
    - "!\n"
---
in: "\n\n\n"
title: {}
out:
    - "!\n\n"
---
in: |
    Title: This simple test
    Author: Ludovic
title:
    title: "This simple test"
    author: "Ludovic"
out: []
---
in: |
    Title: This simple test

    It doesn't have much.
title:
    title: "This simple test"
out:
    - "!\nIt doesn't have much."
---
in: |
    Title:
        _**BRICK & STEEL**_
        _**FULL RETIRED**_
    Credit: Written by
    Authors: Stu Maschwitz
title:
    title: "_**BRICK & STEEL**_\n_**FULL RETIRED**_"
    credit: Written by
    authors: Stu Maschwitz
out: []