_input = $input; } /** * Takes things that should be available when the macro is rendered, * for passing into templates or whatever. * * @return SparkdownMacro */ public function setContext (array $context) { $this->_context = $context; return $this; } /** * Get the current context array. * * @return array */ public function getContext () { return $this->_context; } public function render () { return '

' . $this->_input . '

'; } }