Skip to content

Commit

Permalink
Add escaping of equal sign in <<prettifytable>> using its UTF-16 repr…
Browse files Browse the repository at this point in the history
…esentation.
  • Loading branch information
isabekov committed Mar 8, 2024
1 parent 9a7776f commit 55f2c2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyspark_cookbook.org
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ Column "integer" has values: ~[1, 2, 3]~
<<prettifytable("df.show(truncate\07515)")>>df.show(truncate=15)

print("Non-truncated output (show all):")
<<prettifytable("df.show(truncate\075False)")>>df.show(truncate=False)
<<prettifytable("df.show(truncate\u003dFalse)")>>df.show(truncate=False)
#+END_SRC

#+RESULTS:
Expand Down

0 comments on commit 55f2c2b

Please sign in to comment.