--- title: HTMLListParser keywords: fastai sidebar: home_sidebar nb_path: "nbs/indexers.NoteListIndexer.Parser.ipynb" ---
Lets see how this works for an example note. We start with a note that was imported from evernote as example and show its content.
evernote_file = PYI_TESTDATA / "notes" / "evernote" / "evernote-test-note-1.html"
txt = read_file(evernote_file)
note = INote.from_data(content=txt)
note.show()
Which corresponds to this when rendered
display(HTML(note.content))
We can parse these using the HTMLListParser
parser = HTMLListParser()
lists = parser.get_lists(note)
lists