Skip to content
New issue

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

Refactoring: Create Labeled Node #18

Open
nikeee opened this issue Jan 2, 2019 · 0 comments
Open

Refactoring: Create Labeled Node #18

nikeee opened this issue Jan 2, 2019 · 0 comments
Labels
area-refactorings Stuff that changes the structure of the code, keeping semantics enhancement New feature or request

Comments

@nikeee
Copy link
Owner

nikeee commented Jan 2, 2019

Before:

graph {
    a -- { b c }
    c -- b
}

(user refators b to new labeled node)

After:

graph {
    node_b [label="b"]
    a -- { node_b c }
    c -- node_b
}
@nikeee nikeee added enhancement New feature or request area-refactorings Stuff that changes the structure of the code, keeping semantics labels Jan 2, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-refactorings Stuff that changes the structure of the code, keeping semantics enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant