autocomplete=”off” とする。
<tr>
<th>配信日</th><td><input type="text" name="login" size="40" value="" autocomplete="off" id="datepicker"></td>
</tr>

datepickerと表示が被るのでレイヤーが上の自動補完が邪魔くさいな~と思っていましたが、autocompleteの指定で割と簡単に消せましたね。
随机应变 ABCD: Always Be Coding and … : хороший
autocomplete=”off” とする。
<tr>
<th>配信日</th><td><input type="text" name="login" size="40" value="" autocomplete="off" id="datepicker"></td>
</tr>

datepickerと表示が被るのでレイヤーが上の自動補完が邪魔くさいな~と思っていましたが、autocompleteの指定で割と簡単に消せましたね。
<!Doctype html>
<html>
<head>
<meta charset="UTF-8">
<style>
.step {
list-style-type: none;
display:table;
width:100%;
padding: 0;
margin: 0;
overflow:hidden;
}
.step li {
display:table-cell;
position: relative;
background: #504944;
padding: 1em 0.5em 1em 2em;
color: #fff;
}
.step li:last-child {
padding-right: 1em;
}
.step li:last-child:before,
.step li:last-child:after {
display:none;
}
.step li:before,
.step li:after{
content: "";
position: absolute;
width: 0;
height: 0;
margin: auto;
}
.step li:before{
top:-15px;
right:-1em;
border-style: solid;
border-color:transparent transparent transparent #fff;
border-width: 40px 0 40px 1em;
z-index: 10;
}
.step li:after {
top:-15px;
right:-.8em;
border-style: solid;
border-color:transparent transparent transparent #504944;
border-width: 40px 0 40px 1em;
z-index: 10;
}
.step li.is-current {
background: #9bbb30;
font-weight: bold;
}
.step li.is-current:after{
border-color: transparent transparent transparent #9bbb30;
}
</style>
</head>
<body>
<div class="mermaid">
<ol class="step">
<li class="is-current">STEP1</li>
<li>STEP2</li>
<li>STEP3</li>
</ol>
</div>
</body>
</html>
OKOK ^^!

さあ、これを当てはめていきましょう♪
<div class="mermaid">
graph TD
ST[Start] --> IF{通信できる?}
IF1 -->|できる| PC1[処理]
IF1 -->|できない| ED[End]
PC1 --> ED
</div>
なるほど!?

<!Doctype html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div class="mermaid">
sequenceDiagram
A ->> B :要求
B -->> A: 返答
</div>
<script src="https://unpkg.com/mermaid/dist/mermaid.min.js"></script>
<script>
mermaid.initialize({
startOnLoad:true
});
</script>
</body>
</html>
よくできてんなー

WBS、ガントチャートにbrabioというツールを使ってみます。

なんだこれ、ガント作成が超絶楽だ。

tinymce.initを編集
force_br_newlines : true, force_p_newlines : false,forced_root_block : ”, とします。
tinymce.init({
mode : "specific_textareas",
editor_selector : "mceEditor",
language: 'ja',
force_br_newlines : true,
force_p_newlines : false,
forced_root_block : '',
branding: false,
init_instance_callback: function (editor) {
editor.on('change', function (e) {
$('#preview_area').html(editor.getContent());
});
}
});
おお、おもったよりいいっすね。

ではコードをはめ込んでいきます。
プレビューがイマイチだなー。。

border-radiusでごまかしますw
うん、こんな感じかな。

smtp周りだな。
CSSでステップバーを作りたい。あああああああああああああああああ、先がなげーーーーーー
以下のURLからJapaneseを選択
https://www.tiny.cloud/get-tiny/language-packages/
downloadすると、ja.jsが出てくる。
js/tinymce/langs 配下に配置する。

tinymce.initにlanguage: ‘ja’を追加
<script src="asset/js/tinymce/tinymce.min.js"></script>
<script>
tinymce.init({
selector: 'textarea',
language: 'ja'
});
</script>
おお、これはすげーな。

formではidを変えます。
javascript側
<script>
$('#datepicker, #update').datepicker({
dateFormat: 'yy/mm/dd',
});
</script>
idが同じだと動かないのでご注意を!
デフォルトのデザイン
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/base/jquery-ui.min.css">
</head>
<body>
<input type="text" id="datepicker">
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script>
$('#datepicker').datepicker();
</script>
</body>

date形式は yy/mm/ddがいいかな。
<script>
$('#datepicker').datepicker({
dateFormat: 'yy/mm/dd',
});
</script>
<div class="button_wrapper remodal-bg">
<button type="submit" value="送信" id="square_btn" onClick="location.href='#modal'">登録</button>
</div>
</form>
<!-- remodal -->
<div class="remodal" data-remodal-id="modal">
<button data-remodal-action="close" class="remodal-close"></button>
<h1>登録しますか</h1>
<p>
入力した内容で宜しいでしょうか?
</p>
<br>
<button data-remodal-action="cancel" class="remodal-cancel">Cancel</button>
<button data-remodal-action="confirm" class="remodal-confirm">OK</button>
</div>
<!-- /remodal -->
なるほどなるほど、フロント側の技術は大体OKかな。
