リモートで働くプログラマーの検索結果

リモ太がググったことの覚書

2020-03-16から1日間の記事一覧

railsでckeditor5のmarkdown pluginを導入する

オープンソースのWYSIWYGエディタであるCKEditor5をマークダウンエディタとしてRailsに導入する https://ckeditor.com/ckeditor-5/ 以下のpluginを利用する https://ckeditor.com/docs/ckeditor5/latest/features/markdown.html 前提条件、webpackerの4系を…

javascriptで確認ダイアログを表示する

if (window.confirm('確認ダイアログを表示しました。\n処理を継続しますか')) { console.log('OK') } else { console.log('キャンセル') } たまに使うのでメモ