shikensu haskell
v0.4.1
シーケンス
順序
ファイルのメモリ内表現で一連の関数を実行します。
特定の構造に準拠することなく、静的なWebサイトを簡単に構築します。
import Shikensu
import Shikensu.Contrib ( clone , copyPropsToMetadata , permalink , renameExt , renderContent )
import Shikensu.Contrib.IO ( read , write )
import Data.ByteString ( ByteString )
import Flow
import Prelude hiding ( read )
import qualified Data.Text.Encoding as Text ( decodeUtf8 , encodeUtf8 )
main :: IO Dictionary
main =
-- This IO operation will read the files matching the glob pattern `src/**/*.md`,
-- transform them (see the `flow` function) and then write them to the `build` directory.
dictionary_io
dictionary_io :: IO Dictionary
dictionary_io =
Shikensu. listRelative [ " src/**/*.md " ] " ./ "
>>= read
>>= flow
>>= write " ./build "
flow :: Dictionary -> IO Dictionary
flow =
renameExt " .md " " .html "
.> permalink " index "
.> clone " index.html " " 200.html "
.> copyPropsToMetadata
.> renderContent markdownRenderer
.> return
markdownRenderer :: Definition -> Maybe ByteString
markdownRenderer def =
content def
|> fmap Text. decodeUtf8
|> fmap Markdown. render
|> fmap Text. encodeUtf8
これは、 ./src
ディレクトリのすべてのマークダウンファイルをリストします
そして、この正確な順序で次のことを行います。
.html
に変更します。%matched_path/%file_basename/index.%file_extension
に変更します。index.html
パスを持つファイルのメモリ内コピーを作成します。content
プロパティをマップします(この場合、マークダウンをレンダリングしています)。./build
ディレクトリに書き込みます。これにより、静的なWebサイトを構築するためのワークフローを簡単に定義できるため、より具体的には次のとおりです。