4NK_IA_front/resources/app/extensions/markdown-math/syntaxes/md-math-inline.tmLanguage.json
Nicolas Cantu f823c3d26c feat: Implémentation du système de pending et polling
- Ajout du système de flags pending pour gérer les fichiers en cours de traitement
- Implémentation du polling automatique toutes les 5 secondes
- Gestion d'erreur robuste avec nettoyage automatique des flags
- Nettoyage des flags orphelins au démarrage du serveur
- Correction du mapping des documents dans le store Redux
- Documentation complète du système de pending

Fixes: Problème de suppression des flags pending au démarrage
Fixes: Problème d'affichage des documents dans le frontend
2025-09-16 05:05:39 +02:00

1 line
1.4 KiB
JSON

{"fileTypes":[],"injectionSelector":"L:meta.paragraph.markdown - (comment, string, markup.math.inline.markdown, markup.fenced_code.block.markdown)","patterns":[{"include":"#math_inline_double"},{"include":"#math_inline_single"},{"include":"#math_inline_block"}],"repository":{"math_inline_single":{"name":"markup.math.inline.markdown","match":"(?<=\\s|\\W|^)(?<!\\$)(\\$)(.+?)(\\$)(?!\\$)(?=\\s|\\W|$)","captures":{"1":{"name":"punctuation.definition.math.begin.markdown"},"2":{"name":"meta.embedded.math.markdown","patterns":[{"include":"text.html.markdown.math#math"}]},"3":{"name":"punctuation.definition.math.end.markdown"}}},"math_inline_double":{"name":"markup.math.inline.markdown","match":"(?<=\\s|\\W|^)(?<!\\$)(\\$\\$)(.+?)(\\$\\$)(?!\\$)(?=\\s|\\W|$)","captures":{"1":{"name":"punctuation.definition.math.begin.markdown"},"2":{"name":"meta.embedded.math.markdown","patterns":[{"include":"text.html.markdown.math#math"}]},"3":{"name":"punctuation.definition.math.end.markdown"}}},"math_inline_block":{"name":"markup.math.inline.markdown","contentName":"meta.embedded.math.markdown","begin":"(?<=\\s|^)(\\${2})","beginCaptures":{"2":{"name":"punctuation.definition.math.begin.markdown"}},"end":"(\\${2})(?=\\s|$)","endCaptures":{"2":{"name":"punctuation.definition.math.end.markdown"}},"patterns":[{"include":"text.html.markdown.math#math"}]}},"scopeName":"markdown.math.inline"}