我看到create函数列出了标识符。
ghci λ> :t create
create :: [Identifier] -> Rules () -> Rules ()
我应该使用哪个标识符列表来匹配网站的根目录?例如,我只想制作一个单独的html页面,该页面出现在" www.example.com"没有" /帖子"或" /档案"或任何其他域名部分。
我尝试了一些:
create "/" $ do
route idRoute
compile $ pandocCompiler
>>= loadAndApplyTemplate "templates/default.html" defaultContext
>>= relativizeUrls
和
create "/*" $ do
route idRoute
compile $ pandocCompiler
>>= loadAndApplyTemplate "templates/default.html" defaultContext
>>= relativizeUrls
和
create "." $ do
route idRoute
compile $ pandocCompiler
>>= loadAndApplyTemplate "templates/default.html" defaultContext
>>= relativizeUrls
和
create "./" $ do
route idRoute
compile $ pandocCompiler
>>= loadAndApplyTemplate "templates/default.html" defaultContext
>>= relativizeUrls
和
create "/." $ do
route idRoute
compile $ pandocCompiler
>>= loadAndApplyTemplate "templates/default.html" defaultContext
>>= relativizeUrls
和
create "" $ do
route idRoute
compile $ pandocCompiler
>>= loadAndApplyTemplate "templates/default.html" defaultContext
>>= relativizeUrls
和
create Nothing $ do
route idRoute
compile $ pandocCompiler
>>= loadAndApplyTemplate "templates/default.html" defaultContext
>>= relativizeUrls
我收到的错误如下:
site.hs:24:12: error:
• Couldn't match type ‘Identifier’ with ‘Char’
arising from the literal ‘""’
• In the first argument of ‘create’, namely ‘""’
In the expression: create ""
In a stmt of a 'do' block:
create ""
$ do { route idRoute;
compile
$ pandocCompiler
>>= loadAndApplyTemplate "templates/default.html" defaultContext
>>= relativizeUrls }
Failed, modules loaded: none.
Loaded GHCi configuration from /tmp/ghci29841/ghci-script
我无法说:i Identifier
或reading documentation或reading the source code让我更清楚:
ghci λ> :i Identifier
data Identifier
= Hakyll.Core.Identifier.Identifier {identifierVersion :: Maybe
String,
Hakyll.Core.Identifier.identifierPath :: String}
-- Defined in ‘Hakyll.Core.Identifier’
instance Eq Identifier -- Defined in ‘Hakyll.Core.Identifier’
instance Ord Identifier -- Defined in ‘Hakyll.Core.Identifier’
instance Show Identifier -- Defined in ‘Hakyll.Core.Identifier’
我应该使用什么神奇的咒语来创建将出现的html" /",我应该如何更好地调查它以使其不那么神秘?
答案 0 :(得分:0)
create
功能需要Identifiers
列表。对于单个元素的情况,只需用括号([]
)包围它。并且Identifier
是IsString
类的成员,因此假设您已启用-XOverloadedStrings
,则可以使用常规引用的字符串文字("index.html"
)构建一个。{/ p>
因此,要创建一个在root用户处提供的文件:
create ["index.html"] $ do
route idRoute
compile $ pandocCompiler
>>= loadAndApplyTemplate "templates/default.html" defaultContext
>>= relativizeUrls
在没有明确文件名的情况下请求路径时提醒(例如http://www.example.com/
),返回文件index.html
的内容(除非服务器以其他方式配置,但这是标准。)