diff --git a/docs/demo.html b/docs/demo.html
index bdbfc8c..c43b9a3 100644
--- a/docs/demo.html
+++ b/docs/demo.html
@@ -89,6 +89,11 @@
 						<input type="checkbox" id="skipEmptyLines"> Skip empty lines
 						<dfn>By default, empty lines are parsed; check to skip.</dfn>
 					</label>
+
+					<label>
+						<input type="checkbox" id="skipNoContentLines"> Skip lines without content
+						<dfn>By default, lines that only have delimiters, quotes, and whitespace are still parsed; check to skip.</dfn>
+					</label>
 				</div>
 
 				<div class="grid-75 grid-parent">
diff --git a/docs/resources/js/demo.js b/docs/resources/js/demo.js
index a59be3c..35289a8 100644
--- a/docs/resources/js/demo.js
+++ b/docs/resources/js/demo.js
@@ -191,6 +191,7 @@ function buildConfig()
 		header: $('#header').prop('checked'),
 		dynamicTyping: $('#dynamicTyping').prop('checked'),
 		skipEmptyLines: $('#skipEmptyLines').prop('checked'),
+		skipNoContentLines: $('#skipNoContentLines').prop('checked'),
 		preview: parseInt($('#preview').val() || 0),
 		step: $('#stream').prop('checked') ? stepFn : undefined,
 		encoding: $('#encoding').val(),