User:Seebe: Difference between revisions

From Renesas.info
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:


= Color and bold inside of pre =
= Color and bold inside of pre =
* suround the pre tag with html.
* surround the pre tag with '''<html>'''.
* then, you can use span to break the pre
* then, you can use span to break the '''<pre>'''
* <html> <pre> <span> <font color=red> 0 </font> </span> </pre> </html>
<html><pre>
<html><pre>
<span><font color=navy><B>/* Common settings */</B></font></span>
<span><font color=navy><B>/* Common settings */</B></font></span>
Line 12: Line 13:
param.pl5_spread = <span><font color=red>0x16</font></span>;
param.pl5_spread = <span><font color=red>0x16</font></span>;
</pre></html>
</pre></html>


= Banner for RZ/V Page =
= Banner for RZ/V Page =
Line 29: Line 29:
✍️
✍️


 
= Embedded Video =
* https://raw.githubusercontent.com/seebe/test/master/qtgame_1628KB.mp4
<html>
<html>
<video controls="controls" src="https://raw.githubusercontent.com/seebe/test/master/qtgame_1628KB.mp4">
<video controls="controls" src="https://raw.githubusercontent.com/seebe/test/master/qtgame_1628KB.mp4">
Line 121: Line 122:
= Formatting Links =  
= Formatting Links =  
* Tables: https://www.mediawiki.org/wiki/Help:Tables
* Tables: https://www.mediawiki.org/wiki/Help:Tables
* Change background color of a row
{|class="wikitable"
!style="font-weight: normal"|heading1
!heading2
|-style="background-color:yellow"
|cell1
|cell2
|-
|cell3
|cell4
|}
<pre>
{|class="wikitable"
!style="font-weight: normal"|heading1
!heading2
|-style="background-color:red"
|cell1
|cell2
|-
|cell3
|cell4
|}
</pre>
= Open Links in new Tab =
* [https://www.docker.com/ docker container] (media wiki default, same window)
* <html><a href=https://www.docker.com target=_blank style="
    background-image: url(/w/skins/Vector/resources/common/images/link-external-small-ltr-progressive.svg?14604);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 0.857em;
    padding-right: 1em;"> docker container </a></html> (custom <a> tag, target=_blank)
<pre>
.mw-parser-output a.external {
    background-image: url(/w/skins/Vector/resources/common/images/link-external-small-ltr-progressive.svg?14604);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 0.857em;
    padding-right: 1em;
}
</pre>

Latest revision as of 10:38, 2 November 2023


Color and bold inside of pre

  • surround the pre tag with <html>.
  • then, you can use span to break the <pre>
  • <html> <pre> <span> <font color=red> 0 </font> </span> </pre> </html>

	/* Common settings */
	param.frequency = 0;
	param.pl5_refdiv = 1;
	param.pl5_divval = 0;
	param.pl5_spread = 0x16;


Introduction Video
🎥
Demo Videos
📰
Whitepapers and Blogs
🚀
Evaluation Boards
🧭
Easy Download Guide
A complete list of all downloads on renesas.com
🧩
System Examples


️ ✍️

Embedded Video


Introduction Video

Overview of products and eval kits
Online Guide
🧭
Where to find information on www.renesas.com
Evaluation Boards
🚀
BSP instructions and helpful hints
Articles
📰
Learn using Articles, Whitepapers and Blogs
Demo Videos
🎥
Links to videos

System Examples
🧩
Combing components for a complete solution


Easy Download Guide
🧭
A complete list of all downloads



style="width: 85%;"

Testing copy to clipboard


sudo apt update



sudo apt update




Formatting Links

heading1 heading2
cell1 cell2
cell3 cell4
{|class="wikitable"
!style="font-weight: normal"|heading1
!heading2
|-style="background-color:red"
|cell1
|cell2
|-
|cell3
|cell4
|}

Open Links in new Tab

.mw-parser-output a.external {
    background-image: url(/w/skins/Vector/resources/common/images/link-external-small-ltr-progressive.svg?14604);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 0.857em;
    padding-right: 1em;
}