XMLRésuméLibrary:

Google

User Guide

Name

skills.format — controls formatting of the skillset element

Applies To

This parameter controls the formatting of the skillset element in all output formats.

Possible Values

Possible values include bullet (the default) and comma.

The examples below show how a <skillset> like this would be rendered:

<skillarea>
  <title>Technical Skills</title>
  <skillset>
    <title>Programming Languages</title>
    <skill>Java</skill>
    <skill>C++</skill>
    <skill>C</skill>
    <skill>perl</skill>
  </skillset>
</skillarea>

bullet

Formats skills as a bulleted list, one skill per line:

Technical Skills

Programming Languages

  • Java

  • C++

  • C

  • Perl

comma

Produces a comma-separated list on a single line:

Technical Skills

Programming Languages: Java, C++, C, Perl