mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 05:28:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			263 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			263 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Plugin } from "ckeditor5";
 | 
						|
 | 
						|
export default class StrikethroughAsDel extends Plugin {
 | 
						|
 | 
						|
	init() {
 | 
						|
		this.editor.conversion
 | 
						|
			.for("downcast")
 | 
						|
			.attributeToElement({
 | 
						|
				model: "strikethrough",
 | 
						|
				view: "del",
 | 
						|
				converterPriority: "high"
 | 
						|
			});
 | 
						|
	}
 | 
						|
 | 
						|
}
 |