Switch to unified view

a b/docs/assets/fragments/hemiplegia-examples.md
1
=== "1"
2
    ```python
3
    text = "Patient hémiplégique"
4
    doc = nlp(text)
5
    spans = doc.spans["hemiplegia"]
6
7
    spans
8
    # Out: [hémiplégique]
9
    ```
10
11
12
13
=== "2"
14
    ```python
15
    text = "Paralysie des membres inférieurs"
16
    doc = nlp(text)
17
    spans = doc.spans["hemiplegia"]
18
19
    spans
20
    # Out: [Paralysie des membres]
21
    ```
22
23
24
25
=== "3"
26
    ```python
27
    text = "Patient en LIS"
28
    doc = nlp(text)
29
    spans = doc.spans["hemiplegia"]
30
31
    spans
32
    # Out: [LIS]
33
    ```