- React API?
- Typescript definitions (or at least JSDoc comments)?
- Editor state as JSON object?
- State-to-HTML serialization tools?
- State-to-HTML tools don't require main (core) package (can be run on API)?
- Can add new block components (change the schema)?
- Can markup new block components (preferably with HTML / CSS)?
- Can add new inline components (change the schema)?
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
#!/usr/bin/env bash | |
read -r -d '' NAMES <<EOF | |
01|Loan Applicant | |
02|Loan Broker | |
03|Dependent | |
04|Asset Account Holder | |
05|Tenant | |
06|Recipient of Civil or Legal Liability Payment | |
07|Titleholder |
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
1. jesus walks | |
8. hey mama => hey mama | |
5. flashing lights => otis => otis | |
13. otis | |
=> runaway | |
11. we major | |
3. runaway => runaway => runaway | |
7. last call => famous |
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
/* | |
* The following styles are all for the loading spinner - <Loading />. | |
*/ | |
.sk-fading-circle { | |
margin: 100px auto; | |
width: 100px; | |
height: 100px; | |
position: relative; | |
} |
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
<!-- hw3.html | |
- | |
- @author Pat Gaffney <pat@hypepat.com> | |
- @date 08/29/2016 | |
- | |
- write basic outline here | |
--> | |
<!DOCTYPE html> | |
<html> |
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
/** ============================================== | |
FLOATING-POINT EXPONENT ERRORS | |
================================================== | |
Exponents for floating-point numbers in both decimal and | |
hexadecimal systems are incorrectly highlighted for Swift | |
source files. This is due to an error in the grammar. | |
*/ | |
let hexInteger = 0x11 |