view tests/test_titlepage.yaml @ 11:c6d28a830f68 0.1.0

Add PyPI support.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 04 Jan 2017 08:51:18 -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: []