Haskell 足够紧凑,五行就能承载一个完整的想法——这恰好是最适合做成图片的形状。
Codeshot 会根据你粘贴的代码识别 Haskell,不存在选错语言的问题。下面是同一段代码在内置 30 款主题中的三款下的效果,由应用自身的样式表渲染。
Haskell
不必离开 Mac,就能把 Haskell 代码片段变成值得分享的图片。
Haskell 足够紧凑,五行就能承载一个完整的想法——这恰好是最适合做成图片的形状。
Codeshot 会根据你粘贴的代码识别 Haskell,不存在选错语言的问题。下面是同一段代码在内置 30 款主题中的三款下的效果,由应用自身的样式表渲染。
module Snapshot (export) where
import qualified Data.Text as T
data Options = Options
{ theme :: T.Text
, scale :: Int
}
export :: T.Text -> Options -> IO FilePath
export code opts = render code (theme opts) >>= save (scale opts)
module Snapshot (export) where
import qualified Data.Text as T
data Options = Options
{ theme :: T.Text
, scale :: Int
}
export :: T.Text -> Options -> IO FilePath
export code opts = render code (theme opts) >>= save (scale opts)
module Snapshot (export) where
import qualified Data.Text as T
data Options = Options
{ theme :: T.Text
, scale :: Int
}
export :: T.Text -> Options -> IO FilePath
export code opts = render code (theme opts) >>= save (scale opts)
类型签名通常是最有意思的一行。即便要删减也把它留在画面里,因为它往往比函数体说明得更多。
让图片随内容自适应,或锁定一个比例——1:1、4:3、3:2、16:9、9:16、2:3 或 3:4——然后以 1×、2× 或 3× 导出,在 Retina 屏上依然清晰。用 ⌘⇧C 直接复制到剪贴板,或用 ⌘S 保存。
查看全部 30 款主题对比,或阅读完整流程。
一切都在你的 Mac 上完成,代码不会外传。