view tests/test_titlepage.yaml @ 2:59fe8cb6190d

Add lots of tests, fix lots of bugs.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 03 Jan 2017 09:05:28 -0800
parents 74b83e3d921e
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: []