mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 19:49:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			253 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			253 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Plugin } from "ckeditor5";
 | |
| 
 | |
| export default class ItalicAsEmPlugin extends Plugin {
 | |
| 
 | |
| 	init() {
 | |
| 		this.editor.conversion
 | |
| 			.for("downcast")
 | |
| 			.attributeToElement({
 | |
| 				model: "italic",
 | |
| 				view: "em",
 | |
| 				converterPriority: "high"
 | |
| 			});
 | |
| 	}
 | |
| 
 | |
| }
 | 
