Results 8 comments of teramako

> 現在、インストール後にデフォルトではアドオンバーが表示されないが、これはステータスバーのオーバーレイを行っているためだと思われる。 いえ、アドオンバー{`#addon-bar`)は初期は隠れた状態です。ステータスバー(`#status-bar`)にオーバーレイしているからではないと思います。 ステータスバーにオーバレイすることの弊害は、「ツールバーのカスタマイズ」から各アイテムを移動できないことではないかと思います。

リスタートレスな拡張なら、インストール時にアイテムを追加すると、イベントをキャッチしてアイテム数が変わっていたら表示する処理があります。 http://mxr.mozilla.org/mozilla-central/source/browser/base/content/browser-addons.js#204 しかし、リスタートレスではない場合、というよりもFirefox再起動後の処理としては、その処理は特にない認識でいます。`AddonsMgrListener.getAddonBarItemCount` の処理を見ると、ステータスバーのアイテム数のカウントしていることから、やはり単純にステータスバーからアドオンバーに移動しても効果はないと思います。 やるとしたら、インストール後の初回起動のみの処理で、アドオンバーを表示する処理を加えないと無理だと思っています。

> 現在の方針では対応するインライン要素を増やしたときに破綻しそうです。 仰るとおりですorz いちおう、`` 内と `...` 内はスキップするようにはしていますが...。やはり拡張性を考えると一文字ずつ見ていくのが良さそうですね。

The generation of the DESCRIPTION section is special, with only one newline in the code to be concatenated. This may be the cause of the problem. https://github.com/PowerShell/platyPS/blob/7234f18090d39fd24c1266d08f2d66965e71e565/src/MamlWriter/MamlHelpers.cs#L67-L73 Other codes, such...

> No changes planned. This is the new normal. We will investigate the flattening of the lists in the MAML. The list problem is not happening everywhere in the MAML...

It's seems `CommandHelp` is create with the locale, but the locale is not reflected into the Metadata and is fixed to "en-US" or the locale of the execution environment. https://github.com/PowerShell/platyPS/blob/7234f18090d39fd24c1266d08f2d66965e71e565/src/Transform/TransformBase.cs#L57-L58...

My current patch aligns with the current platyPS design by limiting parameter type abbreviations to namespaces only. When `-AbbreviateParameterTypeName` is specified, `System.Int32` is rendered as `Int32`, not `int`. If you...

# Update 2025-09-14 ## New features: - Add `` in `` for Maml help generation. In order to be able to read the parameter type from the Maml reader. -...