Revert "Escaped html tags name and target to appear as strings (#165543)"

This reverts commit 080365b7d82a3c99c995cab6dc912b7dfe22aa41.

Reverted https://github.com/pytorch/pytorch/pull/165543 on behalf of https://github.com/pytorch-auto-revert due to Reverted automatically by pytorch's autorevert, to avoid this behaviour add the tag autorevert: disable ([comment](https://github.com/pytorch/pytorch/pull/165543#issuecomment-3417102048))
This commit is contained in:
PyTorch MergeBot
2025-10-17 20:45:48 +00:00
parent 6c9c6e0936
commit 06d324365c

View File

@ -158,11 +158,11 @@ This format captures everything present in the Node class, with the exception of
Concretely:
- **\<name>** is the name of the node as it would appear in `node.name`.
- **\<op_name>** is the `node.op` field, which must be one of these:
- **<name>** is the name of the node as it would appear in `node.name`.
- **<op_name>** is the `node.op` field, which must be one of these:
`<call_function>`, `<placeholder>`,
`<get_attr>`, or `<output>`.
- **\<target>** is the target of the node as `node.target`. The meaning of this
- **<target>** is the target of the node as `node.target`. The meaning of this
field depends on `op_name`.
- **args1, … args 4…** are what is listed in the `node.args` tuple. If a
value in the list is an {class}`torch.fx.Node`, then it will be especially