Autor: Eduardo Z.

  • Testing the accordion block

  • 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

    Teste234
    5678
    9012
    3456
    7890
    1234

    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.

    12345
    67890
    12345
    67890
  • Terms Consent Contact Form

    ← Voltar

    Agradecemos pela sua resposta. ✨