
                         b    d Z ddlmZ ddlmZ ddlmZ ddlmZ  G d dej                        Zy)	zICloud SDK markdown document markdown renderer (markdown in markdown out).    )absolute_import)division)unicode_literals)rendererc                   (     e Zd ZdZ fdZd Z xZS )MarkdownRendererzRenders markdown to markdown.c                 ,    t        t        | 
  |i | y )N)superr   __init__)selfargskwargs	__class__s      ?lib/googlecloudsdk/core/document_renderers/markdown_renderer.pyr   zMarkdownRenderer.__init__   s    	
D*D;F;    c                 :    | j                   j                  |       y)zeWrites text to the markdown output.

    Args:
      text: The text to be written to the output.
    N)_outwrite)r   texts     r   WritezMarkdownRenderer.Write   s     	IIOODr   )__name__
__module____qualname____doc__r   r   __classcell__)r   s   @r   r   r      s    %<r   r   N)	r   
__future__r   r   r   &googlecloudsdk.core.document_renderersr   Rendererr    r   r   <module>r       s)     P &  ' ;x(( r   