sudo apt-get update
sudo apt-get install build-essential tcl
<h1 class="title">jQuery.Markdown.js</h1> | |
<div class="markdown-wrapper"> | |
<div class="markdown-text"> | |
<textarea style="width: 330px; height: 500px;"># H1 | |
## H2 | |
### H3 | |
#### H4 | |
##### H5 | |
###### H6 |
# example
$ ionic start myApp tabs
cordova-plugin-facebook4
<form id="my-form" action="#"> | |
<div class="form-group"> | |
<label>Email address:</label> | |
<input type="email" class="form-control" required> | |
</div> | |
<div class="form-group"> | |
<label>Password:</label> | |
<input type="password" class="form-control"> | |
</div> | |
<div class="checkbox"> |
var users = [ | |
{ id: 1, name: "Joseph" }, | |
{ id: 2, name: "Tressa" } | |
]; | |
var user_names = users.map((user) => { | |
return user.name; | |
}); | |
console.log('names', user_names); | |
// will produce >>> ["Joseph", "Tressa"] |
having a web server turned on doesn't necessarily mean you are serving pages on the world wide web. its what allows you to load your own static files (.html
, .js
etc.) in a browser via http://
.
if you're not sure whether or not you have a web server running, no problem! its easy to confirm.
1. Install mariadb for database
brew install mariadb
After install start mariadb
brew services start mariadb