1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
### Partial / Invalid BibLaTeX Examples
- PrismJS version: 1.19.0
- PrismJS theme: okaidia
#### Example from [Issue #3]
```bib
@article{newpaper,
title={
@article{existing,
title={my old title}
}
```
Previously led to browser being stuck on an infinite loop.
#### Unsupported Nesting Depth
```bib
@article{nestingbelowlevel4,
title={ l1 { l2 } l1 }
}
@article{nestingatlevel4,
title={
l1 {
l2 {
l3 { l4 } l3
} l2
} l1
}
}
@article{nestingabovelevel4,
title={
l1 { l2 { l3 { l4 {
l5
} l4 } l3 } l2 } l1
}
}
```
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.19.0/themes/prism-okaidia.min.css"
integrity="sha512-pGi87NmT0VeSbmZBK40y3wF4H2DlpCYc5lrO/3F/RPhnwn262NReW3jFtG2iZWhbpoWT5MDzBzawpOri+jcUTw==" crossorigin="anonymous" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.19.0/prism.min.js"
integrity="sha512-9ndS8HgVHWQq2A/kpIxygbIZQ7oljc9/AvoEv8SQDy192nAuCGSdk7OdAfCZLDkbRJLZMsrV0NXycMSLLNTWCw==" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/prismjs-bibtex@2.1.0/prism-bibtex.js"
integrity="sha256-A5GMUmGHpY8mVpfcaRLQFeHtmdjZLumKBOMpf81FXX0="
crossorigin="anonymous" referrerpolicy="no-referrer">
</script>
[Issue #3]: https://github.com/SaswatPadhi/prismjs-bibtex/issues/3
|