Difference between revisions of "Qtable00"
Jump to navigation
Jump to search
Darwin2049 (talk | contribs) |
Darwin2049 (talk | contribs) |
||
Line 23: | Line 23: | ||
|- style="color: blue;" | |- style="color: blue;" | ||
| '''IBM.00 ''' | | '''IBM.00 ''' | ||
| CG4 | | '''''CG4''''' | ||
| IBM.W | | '''IBM.W''' | ||
| H2O.01 | | '''''H2O.01''''' | ||
| H2O.02 | | ''H2O.02'' | ||
|- | |- | ||
| IBM.2 | | IBM.2 |
Revision as of 20:56, 16 July 2023
ScratchPad Page.
Table definitions.
- 2023.07.13
- table 00
- reference page: https://en.wikibooks.org/wiki/Editing_Wikitext/Tables
P 1 | P 2 | P 3 | P 4 | P 5 |
---|---|---|---|---|
CG4.05 | CG4.02 | IBM.05 | IBM.02 | H2O.05 |
IBM.00 | CG4 | IBM.W | H2O.01 | H2O.02 |
IBM.2 | H2O.3 | CG4 | CG4 | H20.5 |
Front_End 1 | Support_Processing 2 |
---|---|
CG4 | WATSON |
CG4 | OS.Finance |
A1 : Purple Cell Style | A2 : Red Table Style |
B1 : Purple Cell Style | B2 : Blue Row Style |
CG4.01 : Finance.Mod | CG4.01 : Moderator |
D1 : Red Table Style | D2 : Red Table Style |
Front_End_User_Interface | Background_Ensemble |
---|---|
CG4 | WATSON |
CG4 | WATSON |
A | D | ||
H | |||
L | |||
M | N | O | P |
CG4 | WATSON | ||
WATSON |
/**
* @source https://www.mediawiki.org/wiki/Snippets/Open_specific_links_in_new_window * @version 2018-09-15 */
$( function () { $( '#mw-content-text' ).on( 'click', '.newwin > a', function () { var otherWindow = window.open(); otherWindow.opener = null; otherWindow.location = this; return false; } ); } );