Help:Editing
From SoSH
Contents |
Editing basics
Review policy and conventions
- Make sure that you submit information which is relevant to the specific purpose of the wiki, or your content might be deleted. You can always use the talk pages to ask questions or check to see if your idea will be accepted. Please make note of the license your contributions will be covered with.
Start editing
- To start editing a MediaWiki page, click the Edit this page (or just edit) link at one of its edges. This brings you to the edit page: a page with a text box containing the wikitext - the editable code from which the server produces the finished page. If you just want to experiment, please do so in the sandbox, not here.
Type your changes
- You can just type your text. However, also using basic wiki markup (described in the next section) to make links and do simple formatting adds to the value of your contribution. Wikimedia wikis have style guidelines available. If you follow these, your contributions will be more valuable as they won't need to be cleaned up later.
Summarize your changes
- Write a short edit summary in the small field below the edit-box. You may use shorthand to describe your changes, as described in the edit summary legend.
Preview before saving
- When you have finished, click Show preview to see how your changes will look before you make them permanent. Repeat the edit/preview process until you are satisfied, then click Save page and your changes will be immediately applied to the article.
Most frequent wiki markup explained
Here are the 6 most frequently used types of wiki markup. If you need more help see Wikitext examples.
| What it looks like | What you type |
|---|---|
|
You can italicize text by putting 2 apostrophes on each side. 3 apostrophes will embolden the text. 5 apostrophes will embolden and italicize the text. (4 apostrophes don't do anything special -- there's just 'one left over'.) | You can ''italicize text'' by putting 2 apostrophes on each side. 3 apostrophes will embolden '''the text'''. 5 apostrophes will embolden and italicize '''''the text'''''. (4 apostrophes don't do anything special -- there's just ''''one left over''''.) |
|
You should "sign" your comments on talk pages: | You should "sign" your comments on talk pages: <br> - Three tildes give your user name: ~~~ <br> - Four tildes give your user name plus date/time: ~~~~ <br> - Five tildes give the date/time alone: ~~~~~ <br> |
|
Section headings
Headings organize your writing into sections. The Wiki software can automatically generate a table of contents from them. Subsection
Using more equals signs creates a subsection. A smaller subsection
Don't skip levels, like from two to four equals signs. Start with 2 equals signs not 1 because 1 creates H1 tags which should be reserved for page title. | == Section headings == ''Headings'' organize your writing into sections. The Wiki software can automatically generate a table of contents from them. === Subsection === Using more equals signs creates a subsection. ==== A smaller subsection ==== Don't skip levels, like from two to four equals signs. Start with 2 equals signs not 1 because 1 creates H1 tags which should be reserved for page title. |
marks the end of the list.
| * ''Unordered lists'' are easy to do: ** Start every line with a star. *** More stars indicate a deeper level. *: Previous item continues. ** A new line * in a list marks the end of the list. * Of course you can start again. |
A new line marks the end of the list.
| # ''Numbered lists'' are: ## Very organized ## Easy to follow A new line marks the end of the list. # New numbering starts with 1. |
|
Here's a link to the Main page. | Here's a link to the [[Main page]]. |
|
The weather in London is a page that doesn't exist yet. You could create it by clicking on the link. | [[The weather in London]] is a page that doesn't exist yet. You could create it by clicking on the link. |
|
You can link to a page section by its title: If multiple sections have the same title, add a number. #Example section 3 goes to the third section named "Example section". | You can link to a page section by its title: *[[List of cities by country#Morocco]]. If multiple sections have the same title, add a number. [[#Example section 3]] goes to the third section named "Example section". |
Further reading
Editing help
Wiki markups and codes
- Help:Wikitext examples
- Help:Reference card - a one-page summary of important commands, to be printed out and used next to the computer
- Help:HTML in wikitext
- HTML elements - introduction to HTML
Page management
How to use Excel to Make Wiki tables
(you can also download an .xls with the macro already embedded at wikitable, and follow the same directions below)
In short: Select the macrotext above, insert it into a EXCEL/VBA-Modul and start. If more details are needed, follow the instructions below, the commands may vary slightly depending on your excel version:
- With Excel use: File > Open and open the .xls file of the spreadsheet table you want to convert.
- Open the macro-editor (menu: Special/Macro/Visual-Basic-editor) or 'Alt-F11'
- In the left window you should see the open VBA-Projects in the Project-Explorer. If not open that subwindow with CTR-R or View>ProjectExplorer.
- There you right-click on 'VBA-Project' with the cursor placed at the name of your actual document
- In the context menu use Insert/Module
- Somewhere eg. in the right you will get a popup window with a empty white area, with two dropdownboxes on the top (General and Declarations)
- Select the entire vba-Code above and insert it into that empty white area. Later when saving this you will actually create a new module.
- Go back to your worksheet, do the final formatting of your table, then select the cellrange you want to convert into a wiki-table.
- Execute the macro format_as_wikitable
- A new worksheet with name "Wikioutput" is created, where the wikitext is written
- Copy this text via clipbaord into the wiki-editor
- Use the preview function of the wiki-editor
- When you are satisfied with the results save your wiki-work
'
' <MS-EXCEL VBA code: format_as_wikitable generates a wiki-Table from a EXCEL-cellrange>
'
' (c) Othmar Lippuner>, 10 April 2006
'licenced under GNU GENERAL PUBLIC LICENSE at 10 April 2006 by author <Othmar Lippuner>
' GNU-License Version from 2, June 1991
'
' Everyone is permitted to copy and distribute verbatim copies
' of this license document, but changing it is not allowed.
'
'
'Installation:
' * Copy the macrocode into a vba-module of your excelfile. E.G you might create a dummy macro, this creates
' the macromodule; then edit that macro, paste this macrocode into that module.
'Hint:
' * You may save a EXCEL-templatefile with this macro as a xla-file. By using this xla-file you may take use
' of the macro from any other EXCEL-file, without copy the macro into all these files.
'
'Usage:
'
' 1. Select the range you wan't to publish in EXCEL
' 2. Execute the macro FORMAT_AS_WIKITABLE
' 3. copy the complete wiki-text in outputtable WIKIOUTPUT into clipboard
' 4. paste the clipboardtext into your wikieditor
'
'Functional Description:
'
' The main formatting attributes of excel are converted into wiki-parameters
' Some strategies are applied to minimize the wiki-textcode generated, e.g. if possible
' attributes are written als lineparameter instead of cellparameters thus reducing
' textvolume and DB-load to the wikiservers, an increasing the readability of the tablecode
' while editing.
'
' Attributes converted
' bold
' italic
' textsize
' underline
' backgroundcolor
' textcolor
' horizontalalignment
' verticalaligment
' numberformats
'
'
' Attributes not converted
' character font just uses the standard font settings of your favortie wiki-skin
' styles
' borders just uses the standard border settings of border="2" cellpadding="4" cellspacing="0" style="margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 8pt;"
'
' not supported features
' nested table (excel can not do that)
' connected cells in EXCEL, please dont select connected cells, when using this macro
' charts or any other graphical gagets
'
'
'Software Requirements:
'
' Software is tested under EXCEL 2003 on Windows-XP, should be fine also with EXCEL-2000, its up to you to check it out
' There has been feedback that for EXCEL on MAC-OS this macro won't work straight away,
' it might request some code-adjustment
'
'
' Caution: Any worksheet named "wikioutput" will be deleted, recreated and then overwritten
' when executing the macro. In other words: By executing the macro 'format_as_wikitablle'
' you accept that the name and content of this worksheet is reserved to the macro
' 'format_as_wikitablle'.
'
' Caution-2:
' You may name the vba-module whatever you want but you must not name it "Format_as_wikitable". This whould
' conflict with the name of the mainmacro.
'
'Version history
'
' V10 10.4.2006, released
' V11 17.4.2006, ernonous formatting corrected
' V12 26.5.2006, verify that selection is a cellrange
'
'
'Copyright (C) <2006> <Othmar Lippuner ,Switzerland>
'
' This program is free software; you can redistribute it and/or modify
' it under the terms of the GNU General Public License as published by
' the Free Software Foundation; either version 2 of the License, or
' (at your option) any later version.
'
' This program is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU General Public License for more details.
'
' You should have received a copy of the GNU General Public License
' along with this program; if not, write to the Free Software
' Foundation, Inc., 51 Franklin Street, Fifth Floor,
' Boston, MA 02110-1301, USA
'
'
'
' format_as_wikitablle.bas version 10, Copyright (C) Othmar Lippuner
' format_as_wikitablle.bas comes with ABSOLUTELY NO WARRANTY;
' This is free software, and you are welcome to redistribute it
' under certain conditions; consult the GNU-Public license for these
' conditions.
'
'
'
' <Othmar Lippuner>, 10 April 2006 meet me at [[:de:Benutzer Diskussion:Ollio]]
'
'
Option Explicit
Const co = 1 ' all output is written in column 1
Dim iline As Long
Dim icolumn As Long
Dim os As String
Dim oline As Long 'lineindex in outputtable
Dim iLineMax As Long
Dim iColumnMax As Long
Dim selrange As Range 'inputrange
Dim orange As Range 'outputrange
Dim outtabName As String
Dim tableformatting As String
Dim wasUnderlined As Boolean ' remember Textdecoration:underline state
' document the setting of lookahead attributation in line parameter
' if lineparameter is set then skip over cell-attributation
Dim lineattribut_borders_set As Boolean
Dim lineattribut_fontsize_set As Boolean
Dim lineattribut_bold_set As Boolean
Dim lineattribut_italic_set As Boolean
Dim lineattribut_backgroundcolor_set As Boolean
Dim lineattribut_fondcolor_set As Boolean
Dim lineattribut_Halignment_set As Boolean
Dim lineattribut_Valignment_set As Boolean
Dim lineattribut_borders As Long
Dim lineattribut_fontsize As Long
Dim lineattribut_backgroundcolor As Long
Dim lineattribut_fondcolor As Long
Dim lineattribut_Halignment As Long
Dim lineattribut_Valignment As Long
Function hexdigit(wrk As Long) As String
If wrk > 15 Then
MsgBox "illegal hexdigit value : " & wrk
Else
Select Case wrk
Case 0: hexdigit = "0"
Case 1: hexdigit = "1"
Case 2: hexdigit = "2"
Case 3: hexdigit = "3"
Case 4: hexdigit = "4"
Case 5: hexdigit = "5"
Case 6: hexdigit = "6"
Case 7: hexdigit = "7"
Case 8: hexdigit = "8"
Case 9: hexdigit = "9"
Case 10: hexdigit = "A"
Case 11: hexdigit = "B"
Case 12: hexdigit = "C"
Case 13: hexdigit = "D"
Case 14: hexdigit = "E"
Case 15: hexdigit = "F"
End Select
End If
End Function 'hexdigit
Function myhex(num As Long) As String
'konvert a 16-Bit long to HEX-String inkl fixecd leading zeros
Dim lastdivisor As Long
Dim divisor As Long
Dim wrk As Long
Dim k As Long
Dim result As String
If wrk > 16 ^ 6 Then
MsgBox "illegal hexdigit value : " & wrk
Else
lastdivisor = 1
result = ""
divisor = 16
For k = 1 To 6
wrk = (num Mod divisor) \ lastdivisor
result = hexdigit(wrk) & result
lastdivisor = divisor
If k < 7 Then ' avoid overflow
divisor = divisor * 16
End If
Next k
myhex = result
End If
End Function 'myhex
Private Sub write_tablehead()
tableformatting = "border="2" cellpadding="4" cellspacing="0" style="margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 8pt;"
oline = oline + 1: orange.Cells(oline, 1) = "{|" & tableformatting
End Sub 'write_tablehead
Private Sub write_lineheader()
Dim col_lookahead As Long
Dim lineheader As String
lineattribut_borders_set = True
lineattribut_fontsize_set = True
lineattribut_bold_set = True
lineattribut_italic_set = True
lineattribut_backgroundcolor_set = True
lineattribut_fondcolor_set = True
lineattribut_Halignment_set = True
lineattribut_Valignment_set = True
' init variables for delta-detection
' xxxx lineattribut_borders = selrange.Cells(iline, 1).Borders
If Not IsNull(selrange.Cells(iline, 1).Font.Size) Then
lineattribut_fontsize = selrange.Cells(iline, 1).Font.Size
Else
lineattribut_fontsize = 10 'take default
End If
If Not IsNull(selrange.Cells(iline, 1).Font.Bold) Then
lineattribut_bold_set = selrange.Cells(iline, 1).Font.Bold
Else
lineattribut_bold_set = False
End If
If Not IsNull(selrange.Cells(iline, 1).Font.Italic) Then
lineattribut_italic_set = selrange.Cells(iline, 1).Font.Italic
Else
lineattribut_italic_set = False
End If
lineattribut_backgroundcolor = selrange.Cells(iline, 1).Interior.Color
lineattribut_fondcolor = selrange.Cells(iline, 1).Font.Color
lineattribut_Halignment = selrange.Cells(iline, 1).HorizontalAlignment
lineattribut_Valignment = selrange.Cells(iline, 1).VerticalAlignment
' loop on line for deltadectection
For col_lookahead = 2 To iColumnMax
' xxxx If lineattribut_borders <> selrange.Cells(iline, 1).Borders Then
' xxxx lineattribut_borders_set = False: End If
If Not IsNull(selrange.Cells(iline, col_lookahead).Font.Size) Then
If lineattribut_fontsize <> selrange.Cells(iline, col_lookahead).Font.Size Then
lineattribut_fontsize_set = False: End If
End If
If Not selrange.Cells(iline, col_lookahead).Font.Bold Then
lineattribut_bold_set = False: End If
If Not selrange.Cells(iline, col_lookahead).Font.Italic Then
lineattribut_italic_set = False: End If
If lineattribut_backgroundcolor <> selrange.Cells(iline, col_lookahead).Interior.Color Then
lineattribut_backgroundcolor_set = False:
End If
If lineattribut_fondcolor <> selrange.Cells(iline, col_lookahead).Font.Color Then
lineattribut_fondcolor_set = False: End If
If lineattribut_Halignment <> selrange.Cells(iline, col_lookahead).HorizontalAlignment Then
lineattribut_Halignment_set = False: End If
If lineattribut_Valignment <> selrange.Cells(iline, col_lookahead).VerticalAlignment Then
lineattribut_Valignment_set = False: End If
Next col_lookahead
lineheader = formatstring_for_a_linecontent
' write linetrailer
oline = oline + 1: orange.Cells(oline, 1) = "|- " & lineheader
End Sub 'write_lineheader
Private Sub write_linetrailer()
' write linebuffer to output ==== anyway sofare it is empty
oline = oline + 1: orange.Cells(oline, 1) = os
' flush the linebuffer
os = ""
End Sub 'write_linetrailer
Function excelHexStr2HTML(str As String) As String
Dim a_str As String
Dim b_str As String
Dim c_str As String
a_str = Left(str, 2)
c_str = Right(str, 2)
b_str = Left(Right(str, 4), 2)
excelHexStr2HTML = c_str & b_str & a_str
End Function
Private Function skip_underline(str As String) As String
Dim k As Long
Dim so As String
so = ""
' skip unwanted underscores in EXCEL-transforms
For k = 1 To Len(str)
If Mid$(str, k, 1) <> "_" Then
so = so & Mid$(str, k, 1)
End If
Next k
skip_underline = so
End Function
Private Function process_cellcontent(cellcontent As String) As String
Const verbose = False
'dont use .NumberFormatlocal because it
' returns wrong Dateformatstrings "[$-807]TTTT, T. MMMM JJJJ"; instead of "TTTT, T. MMMM JJJJ;" that won't work with format
With selrange.Cells(iline, icolumn)
If verbose Then
Debug.Print iline; "/"; icolumn, .NumberFormat, .Value
End If
If .NumberFormat <> "General" And .NumberFormat <> "Standard" Then
process_cellcontent = skip_underline(Format(.Value, .NumberFormat))
Else
process_cellcontent = cellcontent
End If
End With
End Function
Private Sub writefirstlinecell(colnr As Long)
oline = oline + 1: orange.Cells(oline, 1) = formatstring_for_a_cellcontent(True, colnr = 1) & " | " & _
process_cellcontent(selrange.Cells(iline, icolumn))
End Sub
Private Sub writecell(colnr As Long)
oline = oline + 1: orange.Cells(oline, 1) = formatstring_for_a_cellcontent(False, colnr = 1) & " | " & _
process_cellcontent(selrange.Cells(iline, icolumn))
End Sub
Private Sub write_tabletail()
oline = oline + 1: orange.Cells(oline, 1) = "|}"
End Sub
Function doublequotestring(str As String, Placeholderchar As String) As String
Dim k As Long
Dim so As String
so = ""
For k = 1 To Len(str)
If Mid$(str, k, 1) = Left(Placeholderchar, 1) Then
so = so & """"
Else
so = so & Mid$(str, k, 1)
End If
Next k
doublequotestring = so
End Function
Function WorksheetExits(tabname As String) As Boolean
Dim found As Boolean
found = False
On Error GoTo err_exit
Worksheets(tabname).Select
found = True
err_exit:
WorksheetExits = found
End Function 'WorksheetExits
Public Sub Format_as_wikitable()
' implicit parameter: selected range
' writes the output into table: wikioutput
' caution if this table exists it is deleted !!!
If Not TypeOf Selection Is Range Then
MsgBox "Error: You must select a cellrange, to convert to a wiki-table, but you " _
& vbCrLf & " have selected a " & TypeName(Selection)
Else
Set selrange = Selection
wasUnderlined = False
iLineMax = selrange.Rows.Count
iColumnMax = selrange.Columns.Count
outtabName = "wikioutput"
If WorksheetExits(outtabName) Then
Worksheets(outtabName).Delete
End If
oline = 0
' create output worksheet
Worksheets.Add 'always added at first place (?)
Worksheets(1).Name = outtabName
Worksheets("wikioutput").Select
Set orange = ActiveSheet.Range(Cells(1, 1), Cells(65353, 1))
orange.Select
'( Rows(65534), Columns(1))
write_tablehead
For iline = 1 To iLineMax
write_lineheader
For icolumn = 1 To iColumnMax
If iline = 1 Then
writefirstlinecell (icolumn)
Else
writecell (icolumn)
End If
Next icolumn
write_linetrailer
Next iline
write_tabletail
End If 'Not TypeOf selrange Is Range Then
End Sub
Function formatstring_for_a_cellcontent(firstline As Boolean, firstrow As Boolean) As String
Dim str As String
Dim stylestring As String
Dim attribute_String As String
Dim colhexval As String
Dim prop As String
stylestring = ""
attribute_String = ""
With selrange.Cells(iline, icolumn)
' Determine backgroundcolor_prop
'----------------------------------------
If Not lineattribut_backgroundcolor_set Then
colhexval = excelHexStr2HTML(myhex(.Interior.Color))
prop = "@background-color:#" & colhexval
' Apply backgroundcolor_prop to Stylestring
If colhexval <> "FFFFFF" Then 'don't write defaultvalue for white, to help to save wikidb-tablespace
If stylestring = "" Then
stylestring = prop
Else
stylestring = stylestring & ";" & prop
End If
End If
End If
' Determine Borders_prop
'----------------------------------------
'.Borders
' do something
' Determine Width_prop
'----------------------------------------
If firstline Then
prop = "width=@" & .Width & "@"
' Apply Width_prop to Stylestring
attribute_String = attribute_String & " " & prop
End If
' Determine Font_prop
'========================================
'.Font
' Determine Font prop font.size
'----------------------------------------
With .Font
If Not IsNull(.Size) And .Size <> 10 And Not lineattribut_fontsize_set Then ' trapped ISnull-Condition and ignore standard fontsize
prop = "font-size:" & .Size
If stylestring = "" Then
stylestring = "@" & prop & "pt"
Else
stylestring = stylestring & ";" & prop & "pt"
End If
End If
' Determine Font prop font.bold
'----------------------------------------
If .Bold And Not lineattribut_bold_set Then
prop = "font-weight:bold"
If stylestring = "" Then
stylestring = "@" & prop
Else
stylestring = stylestring & ";" & prop
End If
End If
' Determine Font prop underline
'----------------------------------------
If .Italic Then
prop = "font-style:Italic"
If stylestring = "" Then
stylestring = "@" & prop
Else
stylestring = stylestring & ";" & prop
End If
End If
' Determine Font prop font.italic
'----------------------------------------
If .Underline = xlUnderlineStyleNone And Not lineattribut_italic_set Then ' toggle switch off
If wasUnderlined Then ' toggle switch off
prop = "text-decoration:none"
wasUnderlined = False ' toggle switch on
If stylestring = "" Then
stylestring = "@" & prop
Else
stylestring = stylestring & ";" & prop
End If
End If
Else '.Underline <> xlUnderlineStyleNone
If Not wasUnderlined Then
prop = "text-decoration:underline"
wasUnderlined = True ' toggle switch on
If stylestring = "" Then
stylestring = "@" & prop
Else
stylestring = stylestring & ";" & prop
End If
End If
End If
' Determine Color prop font.color
'----------------------------------------
If Not IsNull(.Color) And .Color <> 0 And Not lineattribut_fondcolor_set Then ' trapped ISnull-Condition and ignore standard color
prop = "color:#" & excelHexStr2HTML(myhex(.Color))
If stylestring = "" Then
stylestring = "@" & prop
Else
stylestring = stylestring & ";" & prop
End If
End If
End With
' Determine Height_prop
'----------------------------------------
' .Height
If firstrow Then
prop = "Height=@" & .Height & "@"
' Apply Width_prop to Stylestring
attribute_String = attribute_String & " " & prop
End If
' Determine HorizontalAlignment_prop
'----------------------------------------
'.HorizontalAlignment
If .HorizontalAlignment <> xlHAlignLeft And Not lineattribut_Halignment_set Then ' dont write the default
prop = ""
Select Case .HorizontalAlignment
Case xlHAlignRight: prop = "align=@right@"
Case xlHAlignCenter: prop = "align=@center@"
End Select
' Apply Width_prop to Stylestring
attribute_String = attribute_String & " " & prop
End If
' Determine VerticalAlignment_prop
'----------------------------------------
If .VerticalAlignment <> xlVAlignCenter And Not lineattribut_Halignment_set Then ' dont write the default
prop = ""
Select Case .VerticalAlignment
Case xlVAlignTop: prop = "valign=@top@"
Case xlVAlignBottom: prop = "valign=@bottom@"
End Select
' Apply Width_prop to Stylestring
attribute_String = attribute_String & " " & prop
End If
' Determine IndentLevel_prop
'----------------------------------------
'.IndentLevel >> maybe later to come
' Determine Style_prop
'----------------------------------------
'.Style >> maybe later to come
'----------------------------------------
'.WrapText << Attribut is wiki not relevant, while unconditional default
'----------------------------------------
'
If stylestring <> "" Then
str = doublequotestring("style=" & stylestring & "@", "@")
End If
str = str & doublequotestring(attribute_String, "@")
End With
If str <> "" Then
str = "|" & str
End If
formatstring_for_a_cellcontent = str
End Function 'formatstring_for_a_cellcontent
Function formatstring_for_a_linecontent() As String
Dim prop As String
Dim stylestring As String
Dim colhexval As String
Dim attribute_String As String
Dim ostr As String
With selrange.Cells(iline, 1) 'take first column as reference
' Determine backgroundcolor_prop
'----------------------------------------
If lineattribut_backgroundcolor_set Then
colhexval = excelHexStr2HTML(myhex(.Interior.Color))
prop = "@background-color:#" & colhexval
' Apply backgroundcolor_prop to Stylestring
If colhexval <> "FFFFFF" Then 'don't write defaultvalue for white, to help to save wikidb-tablespace
If stylestring = "" Then
stylestring = prop
Else
stylestring = stylestring & ";" & prop
End If
End If
End If
' Determine Borders_prop
'----------------------------------------
'.Borders
' do something
' Determine Font_prop
'========================================
'.Font
' Determine Font prop font.size
'----------------------------------------
With .Font
If Not IsNull(.Size) And .Size <> 10 And lineattribut_fontsize_set Then ' trapped ISnull-Condition and ignore standard fontsize
prop = "font-size:" & .Size
If stylestring = "" Then
stylestring = "@" & prop & "pt"
Else
stylestring = stylestring & ";" & prop & "pt"
End If
End If
' Determine Font prop font.bold
'----------------------------------------
If lineattribut_bold_set Then
prop = "font-weight:bold"
If stylestring = "" Then
stylestring = "@" & prop
Else
stylestring = stylestring & ";" & prop
End If
End If
' Determine Font prop underline
'----------------------------------------
If lineattribut_italic_set Then
prop = "font-style:Italic"
If stylestring = "" Then
stylestring = "@" & prop
Else
stylestring = stylestring & ";" & prop
End If
End If
' Determine Font prop font.italic
'----------------------------------------
If lineattribut_italic_set Then ' toggle switch off
prop = "text-decoration:underline"
wasUnderlined = True ' toggle switch on
If stylestring = "" Then
stylestring = "@" & prop
Else
stylestring = stylestring & ";" & prop
End If
End If
' Determine Color prop font.color
'----------------------------------------
If Not IsNull(.Color) And .Color <> 0 And lineattribut_fondcolor_set Then ' trapped ISnull-Condition and ignore standard color
prop = "color:#" & excelHexStr2HTML(myhex(.Color))
If stylestring = "" Then
stylestring = "@" & prop
Else
stylestring = stylestring & ";" & prop
End If
End If
End With
' Determine Height_prop
'----------------------------------------
' Determine HorizontalAlignment_prop
'----------------------------------------
'.HorizontalAlignment
If .HorizontalAlignment <> xlHAlignLeft And lineattribut_Halignment_set Then ' dont write the default
prop = ""
Select Case .HorizontalAlignment
Case xlHAlignRight: prop = "align=@right@"
Case xlHAlignCenter: prop = "align=@center@"
End Select
' Apply Width_prop to Stylestring
attribute_String = attribute_String & " " & prop
End If
' Determine VerticalAlignment_prop
'----------------------------------------
If .VerticalAlignment <> xlVAlignCenter And lineattribut_Halignment_set Then ' dont write the default
prop = ""
Select Case .VerticalAlignment
Case xlVAlignTop: prop = "valign=@top@"
Case xlVAlignBottom: prop = "valign=@bottom@"
End Select
' Apply Width_prop to Stylestring
attribute_String = attribute_String & " " & prop
End If
' Determine IndentLevel_prop
'----------------------------------------
'.IndentLevel >> maybe later to come
' Determine Style_prop
'----------------------------------------
'.Style >> maybe later to come
'----------------------------------------
'.WrapText << Attribut is wiki not relevant, while unconditional default
'----------------------------------------
'
If stylestring <> "" Then
ostr = doublequotestring("style=" & stylestring & "@", "@")
End If
ostr = ostr & doublequotestring(attribute_String, "@")
End With
'If ostr <> "" Then
' ostr = "|" & ostr
'End If
formatstring_for_a_linecontent = ostr
End Function 'formatstring_for_a_linecontent

