Giter VIP home page Giter VIP logo

json-to-html's Introduction

Json to HTML convertor

Build Guide

cabal exec -- ghc --make scanner.hs
./scanner input.json output.html

Result

Origin Json File

{
    "quiz": {
        "sport": {
            "q1": {
                "question": "Which one is correct team name in NBA?",
                "options": [
                    "New York Bulls",
                    "Los Angeles Kings",
                    ...
                ],
                "answer": "Huston Rocket",
                "age": 31,
                "case": true
            }
        },
        ...
    }
}

HTML opened in browser

Tricks

Syntax

  • About $ and .

  • Maybe and Just

  • IO _ when return type is IO _, use <- to assign it to a variable

    addOne :: Int -> IO Int
    addOne x = do
        return x 
    
    main = do
        value <- addOne 1
        print(value)
  • unusual show

    > show '"'
    "'\"'" :: String
    > show '\\'
    "\\\\" :: String
    > show 'x'
    "'x'" :: String

    if want to convert Char to String

    > ['x']
    "x" :: [Char]

Regular Expression with PCRE

regex cheat sheet Install

$ cabal install regex-pcre

Error may occur

Wrap.hsc:148:10: fatal error: 'pcre.h' file not found
#include <pcre.h>

solution for mac

brew install pcre
cabal install regex-pcre

cabal

Manage packages in local directroy

cabal sandbox init

to use ghci with packages with local sandboxs

# For GHC < 7.6
$ ghci -no-user-package-conf -package-conf .cabal-sandbox/x86_64-osx-ghc-8.2.2-packages.conf.d

to comile hs file with local sandboxs

cabal exec -- ghc --make myhaskell.hs

json-to-html's People

Contributors

vertexc avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.