mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-03 02:13:16 +03:00 
			
		
		
		
	Due to manual handling & wrapping of non-block content in details block not taking hr elements into account. For #3963
		
			
				
	
	
		
			19 lines
		
	
	
		
			223 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			223 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
export const blockElementTypes = [
 | 
						|
    'p',
 | 
						|
    'h1',
 | 
						|
    'h2',
 | 
						|
    'h3',
 | 
						|
    'h4',
 | 
						|
    'h5',
 | 
						|
    'h6',
 | 
						|
    'div',
 | 
						|
    'blockquote',
 | 
						|
    'pre',
 | 
						|
    'code-block',
 | 
						|
    'details',
 | 
						|
    'ul',
 | 
						|
    'ol',
 | 
						|
    'table',
 | 
						|
    'hr',
 | 
						|
];
 |