New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add title to module document for Docs target #131
Add title to module document for Docs target #131
Conversation
src/Nirum/Targets/Docs.hs
Outdated
@@ -99,6 +100,8 @@ $case expr' | |||
module' :: BoundModule Docs -> Html | |||
module' docsModule = layout pkg path $ [shamlet| | |||
<h1><code>#{path}</code> | |||
$maybe tit <- title | |||
<p>#{tit} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
구두로도 얘기했지만, <h1>
뒤쪽에 나오면 좋을 것 같습니다.
src/Nirum/Targets/Docs.hs
Outdated
title = | ||
case mod' of | ||
Just mod'' -> moduleTitle mod'' | ||
_ -> Nothing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아마 hlint가 이미 오류를 냈을지도 모르겠는데… case … of …
표현식은 fmap moduleTitle mod'
정도로 줄일 수 있을 겁니다.
Prelude> fmap (+1) (Just 123)
Just 124
Prelude> fmap (+1) Nothing
Nothing
src/Nirum/Targets/Docs.hs
Outdated
title :: Maybe Html | ||
title = | ||
case mod' of | ||
Just mod'' -> moduleTitle mod'' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ㅋㅋㅋ 차라리 foundModule
같은 이름은 어떨까요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@admire93 결과가 모듈 제목이라 지금 이름이 더 나은 것 같읍니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reject
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
소소하지만 코멘트하나했읍니다
related #125