You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -26,96 +27,112 @@ ConfigurationDescriptionForPillar class >> itemDescriptionForPillar [
26
27
(StringConfigurationItemnew
27
28
propertyName:#title;
28
29
default:'my super cool book';
29
-
yourself).
30
+
yourself)
31
+
.
30
32
(StringConfigurationItemnew
31
33
propertyName:#attribution;
32
34
default:'me, myself and I';
33
-
yourself).
35
+
yourself)
36
+
.
34
37
(NumberConfigurationItemnew
35
38
propertyName:#headingLevelOffset;
36
39
explanation:
37
-
'Indicate how to convert from the level of a Pillar heading to the level of heading in your exported document.
38
-
For example, a headingLevelOffset of 3 converts a 1st level Pillar heading to an <h4>in HTML';
40
+
'Indicate how to convert from the level of a heading to the level of heading in your exported document.
41
+
For example, a headingLevelOffset of 3 converts a 1st level heading to an <h4>in HTML';
39
42
default:0;
40
-
yourself).
43
+
yourself)
44
+
.
41
45
(StringConfigurationItemnew
42
46
propertyName:#series;
43
47
default:'Square Bracket Associate Collection';
44
-
yourself).
48
+
yourself)
49
+
.
45
50
(StringConfigurationItemnew
46
51
propertyName:#keywords;
47
52
default:'Pharo';
48
-
yourself).
53
+
yourself)
54
+
.
49
55
(PathConfigurationItemnew
50
56
propertyName:#outputDirectory;
51
-
default:'build').
57
+
default:'_result')
58
+
.
52
59
(FolderConfigurationItemnew
53
60
propertyName:#baseDirectory;
54
-
default:'.').
55
-
(FileConfigurationItemnew
56
-
propertyName:#outputFile;
61
+
default:'.')
62
+
.
63
+
64
+
"(FileConfigurationItem new
65
+
propertyName: #separatedOutputFiles;
57
66
default: 'output';
58
67
explanation:
59
68
'If separateOutputFiles is false, indicate the name of the output file. This can also be a write stream.').
69
+
"
60
70
(FileConfigurationItemnew
61
71
propertyName:#mainDocument;
62
-
default:'book').
72
+
default:'book')
73
+
.
74
+
63
75
(FileConfigurationItemnew
64
76
propertyName:#inputFile;
65
-
default:'book';
77
+
default:'index';
66
78
explanation:
67
-
'The Pillar file that must be transformed. You can also specify an input file at the end of the command-line interface. Previously there was no default value').
79
+
'The file that must be transformed. You can also specify an input file at the end of the command-line interface. Previously there was no default value') .
'If true, each input file is exported to one output file. If false (the default), all input files are exported to outputFile.';
78
-
beFalseAsDefault).
79
-
(BooleanConfigurationItemnew
89
+
beFalseAsDefault) ."
90
+
91
+
"(BooleanConfigurationItem new
80
92
propertyName: #renderStructureAsSlide;
81
93
explanation:
82
94
'When true (the default), Pillar will create a dedicated slide for each Pillar header. This parameter is meaningless when generating a written document';
0 commit comments