string-le 0.1.0

Extract every string value from a codebase so a person can read them
1
2
3
4
5
6
7
8
9
10
11
12
13
14
title: Unquoted plain scalar
quoted: "Double quoted value"
single: 'Single quoted value'
number: 42
enabled: true
list:
  - plain item
  - "quoted item"
block: |
  Block scalar line one
  Block scalar line two
folded: >
  Folded scalar text
inline: { key: "inline quoted", plain: bare }