Completed
Push — master ( fe350e...be5f46 )
by smiley
04:14
created
src/Output/HTML/Code.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,8 @@
 block discarded – undo
40 40
 
41 41
 		// @todo
42 42
 		return '<div data-id="'.$id.'" class="expander code-header '.$this->tag.'">'.($desc ? ' - <span>'.$desc.'</span>' : '').'</div>'
43
-		       .'<pre id="'.$id.'" class="code-body" style="display:'.($this->getAttribute('hide') ? 'none' : 'block').';">'
44
-		       .'<code class="language-'.$this->tag.'">'.$this->content.'</code></pre>'; // sanitize
43
+			   .'<pre id="'.$id.'" class="code-body" style="display:'.($this->getAttribute('hide') ? 'none' : 'block').';">'
44
+			   .'<code class="language-'.$this->tag.'">'.$this->content.'</code></pre>'; // sanitize
45 45
 	}
46 46
 
47 47
 }
Please login to merge, or discard this patch.
src/Output/HTML/Tables.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
 		$style  = [];
138 138
 
139 139
 		switch(true){
140
-			case $align && in_array($align, ['left', 'center', 'right', 'justify', 'start', 'end', 'inherit',]):
140
+			case $align && in_array($align, ['left', 'center', 'right', 'justify', 'start', 'end', 'inherit', ]):
141 141
 				$style['text-align'] = $align;
142 142
 				break;
143 143
 			case $valign && in_array($valign, ['baseline', 'bottom', 'middle', 'top']):
Please login to merge, or discard this patch.