We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From your sample code: https://github.com/PHPOffice/PHPWord/blob/master/samples/Sample_14_ListItem.php
`$phpWord->addFontStyle( "normal", array('name' => 'Futura', 'size' => 11, 'color' => '000') );
$phpWord->addNumberingStyle( "index_list", [ 'type' => 'multilevel', 'levels' => [ ['format' => 'decimal', 'text' => '[%1]', 'left' => 360, 'hanging' => 360, 'tabPos' => 360], ], ] );
$section->addListItem('List item 1.', 0, "normal", "index_list");`
The FontStyle (font-family: Futura, font-size: 11 and color 000 doesn't take effect).
FontStyle should take effect.
1.3
8.3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug and add attachments
From your sample code:
https://github.com/PHPOffice/PHPWord/blob/master/samples/Sample_14_ListItem.php
`$phpWord->addFontStyle(
"normal",
array('name' => 'Futura', 'size' => 11, 'color' => '000')
);
$phpWord->addNumberingStyle(
"index_list",
[
'type' => 'multilevel',
'levels' => [
['format' => 'decimal', 'text' => '[%1]', 'left' => 360, 'hanging' => 360, 'tabPos' => 360],
],
]
);
$section->addListItem('List item 1.', 0, "normal", "index_list");`
The FontStyle (font-family: Futura, font-size: 11 and color 000 doesn't take effect).
Expected behavior
FontStyle should take effect.
Steps to reproduce
`$phpWord->addFontStyle(
"normal",
array('name' => 'Futura', 'size' => 11, 'color' => '000')
);
$phpWord->addNumberingStyle(
"index_list",
[
'type' => 'multilevel',
'levels' => [
['format' => 'decimal', 'text' => '[%1]', 'left' => 360, 'hanging' => 360, 'tabPos' => 360],
],
]
);
$section->addListItem('List item 1.', 0, "normal", "index_list");`
PHPWord version(s) where the bug happened
1.3
PHP version(s) where the bug happened
8.3
Priority
The text was updated successfully, but these errors were encountered: