0x4a52466c696e74 2 年 前
コミット
e00879d805
1 ファイル変更1 行追加1 行削除
  1. 1 1
      metla.go

+ 1 - 1
metla.go

@@ -23,7 +23,7 @@ type Metla struct {
 
 func (s *Metla) content(name string) (content []byte, err error) {
 	if content, err = s.contentCallback(name); err == nil {
-		if filepath.Ext(name) != ".script" {
+		if filepath.Ext(name) != ".script" || filepath.Ext(name) != ".sjs" {
 			content, err = parseBytes(content, name)
 		}
 	}