PierrotAWB / simple-fc

GNU General Public License v2.0
0 stars 0 forks source link

Strip whitespace from card faces #1

Closed PierrotAWB closed 3 years ago

PierrotAWB commented 3 years ago

The '\t' characters in the following are saved and printed:

<front>
     This is the front.
</front>
<back>
     This is the back.
</back>

Instead, we should ignore leading whitespace, as if the card were:

<front>
This is the front.
</front>
<back>
This is the back.
</back>