Jed Fox
Jed Fox
The Sphinx `clean_html` filter removes all formatting from `` elements: https://github.com/freeCodeCamp/devdocs/blob/58a0120697a701f2cb9ca87061ec7ef6fde3b013/lib/docs/filters/sphinx/clean_html.rb#L64 However, this is not entirely desirable since the formatting makes things look better. For example, the [header for `BaseException`](http://devdocs.localhost/python~3.8/library/exceptions#BaseException)...
@denilsonsa on Trello: > We already have Moment.js documentation. (See [Moment.js](https://trello.com/c/h4qjRwIR)) > However, it is missing the documentation for `moment-timezone`, which is an optional part of moment.js. > I imagine...
```swift Image("turtlerock.jpg") .clipShape(Circle()) .overlay( Circle() .stroke(Color(white: 0.5), lineWidth: 4) ) ``` When rendering this at first, the expected gray stroke does not appear. After manually removing the `width: 0; height:...
It would be cool to have a way to render directly to a PDF, maybe with a limited set of views that match what people expect out of a PDF....
```swift public func offset(_ offset: CGSize) -> some View public func offset(x: CGFloat = 0, y: CGFloat = 0) -> some View ``` > Offset this view by the horizontal...
Some things that are passed as properties to the `HTML` view should be set using `.setAttribute(, )`, while other ones should be set as `. = `. We should base...
Only reproducible after #260. 1. Select one of the `List`-based demos (`List` or `Sidebar`) 1. Switch to a different browser tab 1. Switch back to the Tokamak demo tab Alternatively...
Steps to reproduce: 1. Open the demo 2. Select “DOM Reference“ 3. Click the button, so it changes its text 4. Select “Counter” Safari Technology Preview Release 110 (Safari 14.0,...
It would be cool to use something like [`@testing-library/dom`](https://testing-library.com/docs/dom-testing-library/intro) to directly test the rendered output and do things like click buttons, fill out inputs, etc. Since the tool uses the...
Many views support some kind of `.fooStyle()` method that takes one of a variety of `XFooStyle()` objects. I took a quick look and it seems like this kind of thing...