X-Git-Url: https://git.cweiske.de/shpub.git/blobdiff_plain/059c6ab77b8e63210b9afc266d62c9f543d4d7ae..d5dbb7068eeeee3ae5e92cee77763c1e70e28c97:/src/shpub/Command/Note.php diff --git a/src/shpub/Command/Note.php b/src/shpub/Command/Note.php index c7683f3..1694243 100644 --- a/src/shpub/Command/Note.php +++ b/src/shpub/Command/Note.php @@ -6,6 +6,7 @@ class Command_Note extends Command_AbstractProps public static function opts(\Console_CommandLine $optParser) { $cmd = $optParser->addCommand('note'); + static::addOptHtml($cmd); static::optsGeneric($cmd); $cmd->addArgument( 'text', @@ -21,7 +22,7 @@ class Command_Note extends Command_AbstractProps { $req = new Request($this->cfg->host, $this->cfg); $req->setType('entry'); - $req->addProperty('content', $cmdRes->args['text']); + $req->addContent($cmdRes->args['text'], $cmdRes->options['html']); $this->handleGenericOptions($cmdRes, $req); $res = $req->send();