Skip to content

Commit 74ad018

Browse files
Fix HTML documentation links and add explanation
Co-Authored-By: Alek Petuskey <[email protected]>
1 parent c2bbe47 commit 74ad018

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/components/html_to_reflex.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Convert HTML to Reflex
22

33

4-
To convert HTML to Reflex code use this live converter tool: https://flexgen.reflex.run/reverse-compiler/
4+
To convert HTML to Reflex code use this live converter tool: https://reflex.build/reverse-compiler/
55

66
## Convert Figma file to Reflex
77

8-
Check out this [Notion doc](https://www.notion.so/reflex-dev/Convert-HTML-to-Reflex-fe22d0641dcd4d5c91c8404ca41c7e77) for a walk through on how to convert a Figma file into Reflex code.
8+
Check out this [Notion doc](https://www.notion.so/reflex-dev/Convert-HTML-to-Reflex-fe22d0641dcd4d5c91c8404ca41c7e77) for a walk through on how to convert a Figma file into Reflex code.

docs/getting_started/basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def my_page():
5858
)
5959
```
6060

61-
You can also use any base HTML element through the [`rx.el`]({docs.library.other.html.path}) namespace.
61+
You can also use any base HTML element through the [`rx.el`](/docs/library/other/html/) namespace. This allows you to use standard HTML elements directly in your Reflex app when you need more control or when a specific component isn't available in the Reflex component library.
6262

6363
```python demo exec
6464
def my_div():

docs/styling/tailwind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,5 +182,5 @@ def tailwind_demo():
182182

183183
Reflex core components are built on Radix Themes, which means they come with pre-defined styling. When you apply Tailwind classes to these components, you may encounter styling conflicts or unexpected behavior as the Tailwind styles compete with the built-in Radix styles.
184184

185-
For the best experience when using Tailwind CSS in your Reflex application, we recommend using the lower-level `rx.el` components. These components don't have pre-applied styles, giving you complete control over styling with Tailwind classes without any conflicts. Check the list of HTML components [here]({library.other.html.path}).
185+
For the best experience when using Tailwind CSS in your Reflex application, we recommend using the lower-level `rx.el` components. These components don't have pre-applied styles, giving you complete control over styling with Tailwind classes without any conflicts. Check the list of HTML components [here](/docs/library/other/html/).
186186

0 commit comments

Comments
 (0)