mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			574 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			574 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const repository = require('../../src/services/repository');
 | |
| 
 | |
| module.exports = () => {
 | |
|     for (const note of repository.getEntities("SELECT * FROM notes WHERE type = 'text' AND isProtected = 0")) {
 | |
|         try {
 | |
|             let content = note.getContent();
 | |
| 
 | |
|             content = content
 | |
|                 .replace(/<h1/ig, "<h2")
 | |
|                 .replace(/<\/h1/ig, "</h2");
 | |
| 
 | |
|             note.setContent(content);
 | |
|         }
 | |
|         catch (e) {
 | |
|             console.log(`Changing note content for note ${note.noteId} failed with: ${e.message} ${e.stack}`);
 | |
|         }
 | |
|     }
 | |
| };
 |