1. 12 4月, 2017 2 次提交
  2. 09 4月, 2017 3 次提交
  3. 03 4月, 2017 12 次提交
  4. 31 3月, 2017 2 次提交
  5. 30 3月, 2017 3 次提交
  6. 19 3月, 2017 1 次提交
  7. 18 3月, 2017 7 次提交
  8. 14 3月, 2017 8 次提交
  9. 09 3月, 2017 2 次提交
    • M
      docs-rst: automatically convert Graphviz and SVG images · db6ccf23
      Markus Heiser 提交于
      This patch brings scalable figure, image handling and a concept to
      embed *render* markups:
      
      * DOT (http://www.graphviz.org)
      * SVG
      
      For image handling use the 'image' replacement::
      
          .. kernel-image::  svg_image.svg
             :alt:    simple SVG image
      
      For figure handling use the 'figure' replacement::
      
          .. kernel-figure::  svg_image.svg
             :alt:    simple SVG image
      
             SVG image example
      
      Embed *render* markups (or languages) like Graphviz's **DOT** is
      provided by the *render* directive.::
      
        .. kernel-render:: DOT
           :alt: foobar digraph
           :caption: Embedded **DOT** (Graphviz) code.
      
           digraph foo {
            "bar" -> "baz";
           }
      
      The *render* directive is a concept to integrate *render* markups and
      languages, yet supported markups:
      
      * DOT: render embedded Graphviz's **DOT**
      * SVG: render embedded Scalable Vector Graphics (**SVG**)
      
      Cc: Jani Nikula <jani.nikula@linux.intel.com>
      Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
      Tested-by: NMauro Carvalho Chehab <mchehab@s-opensource.com>
      Tested-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> (v2 - v5)
      Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> (v1, v6)
      Signed-off-by: NJonathan Corbet <corbet@lwn.net>
      db6ccf23
    • D
      doc: Explain light-handed markup preference a bit better · c3c53600
      Daniel Vetter 提交于
      We're still pretty far away from anything like a consensus, but
      there's clearly a lot of people who prefer an as-light as possible
      approach to converting existing .txt files to .rst. Make sure this is
      properly taken into account and clear.
      
      Motivated by discussions with Peter and Christoph and others.
      
      Cc: Christoph Hellwig <hch@infradead.org>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Jani Nikula <jani.nikula@linux.intel.com>
      Cc: Mauro Carvalho Chehab <mchehab@s-opensource.com>
      Signed-off-by: NDaniel Vetter <daniel.vetter@intel.com>
      Signed-off-by: NJonathan Corbet <corbet@lwn.net>
      c3c53600