You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			42 lines
		
	
	
		
			704 B
		
	
	
	
		
			Markdown
		
	
			
		
		
	
	
			42 lines
		
	
	
		
			704 B
		
	
	
	
		
			Markdown
		
	
Basic replacement
 | 
						|
 | 
						|
```jsx
 | 
						|
<MessageBodyHighlight
 | 
						|
  text="This is before <<left>>Inside<<right>> This is after."
 | 
						|
  i18n={util.i18n}
 | 
						|
/>
 | 
						|
```
 | 
						|
 | 
						|
With no replacement
 | 
						|
 | 
						|
```jsx
 | 
						|
<MessageBodyHighlight
 | 
						|
  text="All\nplain\ntext 🔥 http://somewhere.com"
 | 
						|
  i18n={util.i18n}
 | 
						|
/>
 | 
						|
```
 | 
						|
 | 
						|
With two replacements
 | 
						|
 | 
						|
```jsx
 | 
						|
<MessageBodyHighlight
 | 
						|
  text="Begin <<left>>Inside #1<<right>> This is between the two <<left>>Inside #2<<right>> End."
 | 
						|
  i18n={util.i18n}
 | 
						|
/>
 | 
						|
```
 | 
						|
 | 
						|
With emoji, newlines, and URLs
 | 
						|
 | 
						|
```jsx
 | 
						|
<MessageBodyHighlight
 | 
						|
  text="http://somewhere.com\n\n🔥 Before -- <<left>>A 🔥 inside<<right>> -- After 🔥"
 | 
						|
  i18n={util.i18n}
 | 
						|
/>
 | 
						|
```
 | 
						|
 | 
						|
No jumbomoji
 | 
						|
 | 
						|
```jsx
 | 
						|
<MessageBodyHighlight text="🔥" i18n={util.i18n} />
 | 
						|
```
 |