mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 12:53:43 +01:00 
			
		
		
		
	Fix PlantUML example in document (#21142)
The document was written before Gitea 1.15. Now Gitea uses `/assets` sub-directory (#15219). Close #21023 * #21023
This commit is contained in:
		
							parent
							
								
									24b5a384d2
								
							
						
					
					
						commit
						01eb465c92
					
				@ -121,7 +121,7 @@ Apart from `extra_links.tmpl` and `extra_tabs.tmpl`, there are other useful temp
 | 
				
			|||||||
- `body_inner_pre.tmpl`, before the top navigation bar, but already inside the main container `<div class="full height">`.
 | 
					- `body_inner_pre.tmpl`, before the top navigation bar, but already inside the main container `<div class="full height">`.
 | 
				
			||||||
- `body_inner_post.tmpl`, before the end of the main container.
 | 
					- `body_inner_post.tmpl`, before the end of the main container.
 | 
				
			||||||
- `body_outer_post.tmpl`, before the bottom `<footer>` element.
 | 
					- `body_outer_post.tmpl`, before the bottom `<footer>` element.
 | 
				
			||||||
- `footer.tmpl`, right before the end of the `<body>` tag, a good place for additional Javascript.
 | 
					- `footer.tmpl`, right before the end of the `<body>` tag, a good place for additional JavaScript.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#### Example: PlantUML
 | 
					#### Example: PlantUML
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -129,7 +129,7 @@ You can add [PlantUML](https://plantuml.com/) support to Gitea's markdown by usi
 | 
				
			|||||||
The data is encoded and sent to the PlantUML server which generates the picture. There is an online
 | 
					The data is encoded and sent to the PlantUML server which generates the picture. There is an online
 | 
				
			||||||
demo server at http://www.plantuml.com/plantuml, but if you (or your users) have sensitive data you
 | 
					demo server at http://www.plantuml.com/plantuml, but if you (or your users) have sensitive data you
 | 
				
			||||||
can set up your own [PlantUML server](https://plantuml.com/server) instead. To set up PlantUML rendering,
 | 
					can set up your own [PlantUML server](https://plantuml.com/server) instead. To set up PlantUML rendering,
 | 
				
			||||||
copy javascript files from https://gitea.com/davidsvantesson/plantuml-code-highlight and put them in your
 | 
					copy JavaScript files from https://gitea.com/davidsvantesson/plantuml-code-highlight and put them in your
 | 
				
			||||||
`$GITEA_CUSTOM/public` folder. Then add the following to `custom/footer.tmpl`:
 | 
					`$GITEA_CUSTOM/public` folder. Then add the following to `custom/footer.tmpl`:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```html
 | 
					```html
 | 
				
			||||||
@ -137,9 +137,9 @@ copy javascript files from https://gitea.com/davidsvantesson/plantuml-code-highl
 | 
				
			|||||||
  $(async () => {
 | 
					  $(async () => {
 | 
				
			||||||
    if (!$('.language-plantuml').length) return;
 | 
					    if (!$('.language-plantuml').length) return;
 | 
				
			||||||
    await Promise.all([
 | 
					    await Promise.all([
 | 
				
			||||||
      $.getScript('https://your-server.com/deflate.js'), 
 | 
					      $.getScript('https://your-gitea-server.com/assets/deflate.js'),
 | 
				
			||||||
      $.getScript('https://your-server.com/encode.js'),
 | 
					      $.getScript('https://your-gitea-server.com/assets/encode.js'),
 | 
				
			||||||
      $.getScript('https://your-server.com/plantuml_codeblock_parse.js'),
 | 
					      $.getScript('https://your-gitea-server.com/assets/plantuml_codeblock_parse.js'),
 | 
				
			||||||
    ]);
 | 
					    ]);
 | 
				
			||||||
    // Replace call with address to your plantuml server
 | 
					    // Replace call with address to your plantuml server
 | 
				
			||||||
    parsePlantumlCodeBlocks("https://www.plantuml.com/plantuml");
 | 
					    parsePlantumlCodeBlocks("https://www.plantuml.com/plantuml");
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user