Does the display posts shortcode show the author if the option is available in Customizer > Content Options?

Gallery images

Oie

Photo by Thought Catalog on Pexels.com

def parse_title(dom: XmlResponse) -> Title:
name = pipe(
dom
, html.xpath("//TITLE-TEXT")
, text.titleize
)
number = pipe(
dom
, html.xpath("//TITLE-NUM")
, text.split(" ")
, seq.get(1)
)
children = _parse_divisions_or_articles(number, dom)
url = _source_url(number)
return Title(name, number, children, url)
view raw parse_title.py hosted with ❤ by GitHub

Copying tables from Microsoft Word and Excel

Word

Teste 2 3 4
5 6 7 8
9 0 1 2
3 4 5 6
7 8 9 0
1 2 3 4

Two methods worked:

  1. Selecting the whole table with my mouse/trackpad
  2. Clicking on the top left icon to select the whole table

Excel

Selecting rows and columns in Excel doesn’t work. Related issue.

1 2 3 4 5
6 7 8 9 0
1 2 3 4 5
6 7 8 9 0

Google Sheets

Selecting rows and columns in Excel works.

1 2 3 4 5
6 7 8 9 0
1 2 3 4 5
6 7 8 9 0