Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
| { | |
| "$schema": "http://json.schemastore.org/launchsettings.json", | |
| "iisSettings": { | |
| // truncated | |
| }, | |
| "profiles": { | |
| "http": { | |
| "hotReloadEnabled": true, // add this | |
| // truncated | |
| }, |
| <?php | |
| namespace App\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Support\Facades\File; | |
| class GenerateTranslation extends Command | |
| { | |
| protected $signature = 'app:generate-translation'; |
| function your_shortcode ($atts, $content) { | |
| /** | |
| * remove nested p tag that automatically generate by wordpress | |
| */ | |
| return preg_replace("/^<\/p>|<p>$/", "", $content); | |
| } |
| /** | |
| * Auto Resize Textarea jQuery plugin | |
| * | |
| * Created by [email protected] | Twitter @PutraSoerya9 | |
| * | |
| */ | |
| (function($){ | |
| var AutoResize = function () { |