/**
  * Prepare options by merging default options with frontmatter.
  *
  * @param \nochso\WriteMe\Document $document
  */
 public function prepare(Document $document)
 {
     $this->options = $this->getDefaultOptionList();
     $this->options->prepare($document->getFrontmatter());
 }