[ Launch: SVG Test ] 5804671 by larryweya
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Interop where | |
import Signal | |
import String | |
import Html exposing (..) | |
import Html.Attributes exposing (value) | |
import Html.Events exposing (on, targetValue) | |
type Field = Name | |
| Age |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(when (>= emacs-major-version 24) | |
(require 'package) | |
(add-to-list | |
'package-archives | |
'("melpa" . "http://melpa.org/packages/") | |
t) | |
(package-initialize)) | |
(custom-set-variables | |
;; custom-set-variables was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace LarryWeya\FormbuilderToJSONSchema\FormbuilderToJSONSchema; | |
class FormbuilderParser { | |
/** | |
* @var array the formbuilder schema we are working with | |
*/ | |
protected $schema; | |
/** |