/** ImageFile_Check_正規表現_パターン */
const imageRegex = /\.(gif|jpe?g|tiff?|png|webp|bmp)$/i;
// Blueskyの@付きメタデータも考慮
const blueskyImageRegex = /@(gif|jpe?g|tiff?|png|webp|bmp)$/i;
//movie
const movieRegex = /\.(avi|mp4|mov|wmv|flv|mpg)$/i;
const blueskyMovieRegex = /@(avi|mp4|mov|wmv|flv|mpg)$/i;
const audioRegex = /\.(mp3|wav|ogg|m4a)$/i;
const blueskyAudioRegex = /@(mp3|wav|ogg|m4a)$/i;
//3Dモデルビューアで表示できるやつ
const threeDRegex = /\.(obj|fbx|gltf|glb|stl)$/i;
const blueskyThreeDRegex = /@(obj|fbx|gltf|glb|stl)$/i;
エエー
下線がなくなるとリンク感が減る気がする
