As said in another post, the default (highlight.js?) LaTeX syntax highlighting is minimalist on Flarum:
```latex
\documentclass[french]{article}
\usepackage[T1]{fontenc} % Encodage T1 (adapté au français)
\usepackage{lmodern} % Caractères plus lisibles
\usepackage{babel} % Réglages linguistiques (avec french)
\begin{document}
\section{Ma section\label{masect}}
\end{document}
```
gives (only):
\documentclass[french]{article}
\usepackage[T1]{fontenc} % Encodage T1 (adapté au français)
\usepackage{lmodern} % Caractères plus lisibles
\usepackage{babel} % Réglages linguistiques (avec french)
\begin{document}
\section{Ma section\label{masect}}
\end{document}
Our French LaTeX FAQ, built thanks to the Sphinx documentation generator software, uses Pygments for syntax highlighting and you can see here a much nicer syntax highlighting than above.
Would it be possible to make Flarum rely on Pygments as syntax highlighter instead of the default one?