| 
					
				 | 
			
			
				@@ -34,6 +34,7 @@ const mergeOptions = (options?: IPreviewOptions) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             codeBlockPreview: true, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             fixTermTypo: false, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             footnotes: true, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            listMarker: false, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             paragraphBeginningSpace: false, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             sanitize: true, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             setext: true, 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -78,6 +79,7 @@ export const md2html = (mdText: string, options?: IPreviewOptions) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             headingAnchor: mergedOptions.anchor, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             inlineMathDigit: mergedOptions.math.inlineDigit, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             lazyLoadImage: mergedOptions.lazyLoadImage, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            listMarker: mergedOptions.markdown.listMarker, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             paragraphBeginningSpace: mergedOptions.markdown.paragraphBeginningSpace, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             sanitize: mergedOptions.markdown.sanitize, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             setext: mergedOptions.markdown.setext, 
			 |