mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/454 Closes #447 Approved-by: Ember <acomputerdog@gmail.com> Approved-by: Marie <marie@kaifa.ch>
This commit is contained in:
		
						commit
						ac9e4733fd
					
				
					 4 changed files with 21 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -65,7 +65,7 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
import { computed, ref } from 'vue';
 | 
			
		||||
import { instance } from '@/instance.js';
 | 
			
		||||
import { i18n } from '@/i18n.js';
 | 
			
		||||
import sanitizeHtml from 'sanitize-html';
 | 
			
		||||
import sanitizeHtml from '@/scripts/sanitize-html.js';
 | 
			
		||||
import MkButton from '@/components/MkButton.vue';
 | 
			
		||||
import MkFolder from '@/components/MkFolder.vue';
 | 
			
		||||
import MkSwitch from '@/components/MkSwitch.vue';
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -56,7 +56,7 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
<script lang="ts" setup>
 | 
			
		||||
import { ref } from 'vue';
 | 
			
		||||
import * as Misskey from 'misskey-js';
 | 
			
		||||
import sanitizeHtml from 'sanitize-html';
 | 
			
		||||
import sanitizeHtml from '@/scripts/sanitize-html.js';
 | 
			
		||||
import XSigninDialog from '@/components/MkSigninDialog.vue';
 | 
			
		||||
import XSignupDialog from '@/components/MkSignupDialog.vue';
 | 
			
		||||
import MkButton from '@/components/MkButton.vue';
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -130,7 +130,7 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
</template>
 | 
			
		||||
 | 
			
		||||
<script lang="ts" setup>
 | 
			
		||||
import sanitizeHtml from 'sanitize-html';
 | 
			
		||||
import sanitizeHtml from '@/scripts/sanitize-html.js';
 | 
			
		||||
import { computed, watch, ref } from 'vue';
 | 
			
		||||
import * as Misskey from 'misskey-js';
 | 
			
		||||
import XEmojis from './about.emojis.vue';
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										18
									
								
								packages/frontend/src/scripts/sanitize-html.ts
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								packages/frontend/src/scripts/sanitize-html.ts
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,18 @@
 | 
			
		|||
/*
 | 
			
		||||
 * SPDX-FileCopyrightText: dakkar and other Sharkey contributors
 | 
			
		||||
 * SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
import original from 'sanitize-html';
 | 
			
		||||
 | 
			
		||||
export default function sanitizeHtml(str: string | null): string | null {
 | 
			
		||||
	if (str == null) return str;
 | 
			
		||||
	return original(str, {
 | 
			
		||||
		allowedTags: original.defaults.allowedTags.concat(['img', 'audio', 'video', 'center', 'details', 'summary']),
 | 
			
		||||
		allowedAttributes: {
 | 
			
		||||
			...original.defaults.allowedAttributes,
 | 
			
		||||
			a: original.defaults.allowedAttributes.a.concat(['style']),
 | 
			
		||||
			img: original.defaults.allowedAttributes.img.concat(['style']),
 | 
			
		||||
		},
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	Add table
		
		Reference in a new issue