瀏覽代碼

remove extra whitespace

Hakim El Hattab 12 年之前
父節點
當前提交
864d37f821
共有 1 個文件被更改,包括 8 次插入8 次删除
  1. 8 8
      README.md

+ 8 - 8
README.md

@@ -88,7 +88,7 @@ Reveal.initialize({
 	// Change the presentation direction to be RTL
 	rtl: false,
 
-	// Number of milliseconds between automatically proceeding to the 
+	// Number of milliseconds between automatically proceeding to the
 	// next slide, disabled when set to 0, this value can be overwritten
 	// by using a data-autoslide attribute on your slides
 	autoSlide: 0,
@@ -120,28 +120,28 @@ Reveal.configure({ autoSlide: 5000 });
 
 ### Presentation Size
 
-All presentations have a normal size, that is the resolution at which they are authored. The framework will automatically scale presentations uniformly based on this size to ensure that everything fits on any given display or viewport. 
+All presentations have a normal size, that is the resolution at which they are authored. The framework will automatically scale presentations uniformly based on this size to ensure that everything fits on any given display or viewport.
 
 See below for a list of configuration options related to sizing, including default values:
 
 ```javascript
 Reveal.initialize({
-	
+
 	...
-	
+
 	// The "normal" size of the presentation, aspect ratio will be preserved
 	// when the presentation is scaled to fit different resolutions. Can be
 	// specified using percentage units.
 	width: 960,
 	height: 700,
-	
+
 	// Factor of the display size that should remain empty around the content
 	margin: 0.1,
-	
+
 	// Bounds for smallest/largest possible scale to apply to content
 	minScale: 0.2,
 	maxScale: 1.0
-	
+
 });
 ```
 
@@ -347,7 +347,7 @@ Just press »F« on your keyboard to show your presentation in fullscreen mode.
 
 ## PDF Export
 
-Presentations can be exported to PDF via a special print stylesheet. This feature requires that you use [Google Chrome](http://google.com/chrome). 
+Presentations can be exported to PDF via a special print stylesheet. This feature requires that you use [Google Chrome](http://google.com/chrome).
 Here's an example of an exported presentation that's been uploaded to SlideShare: http://www.slideshare.net/hakimel/revealjs-13872948.
 
 1. Open your presentation with [css/print/pdf.css](https://github.com/hakimel/reveal.js/blob/master/css/print/pdf.css) included on the page. The default index HTML lets you add *print-pdf* anywhere in the query to include the stylesheet, for example: [lab.hakim.se/reveal-js?print-pdf](http://lab.hakim.se/reveal-js?print-pdf).