How do I disable creole text emphasis?

0 votes
asked Aug 7 in Question / help by jfrankl8

I am creating a file tree and I need to have __init__.py listed but currently this gets turned into init.py

Please tell me how to turn this off. 

commented Aug 7 by The-Lu (69,220 points)
Hello J.,
  • On which type of diagram?
A possible answer: 
  • Could you test `~` escape char?
For ListFile See:
If that can help,
Regards,
Th.
commented Aug 7 by The-Lu (69,220 points)

Here are some examples:

1. With old file tree

@startuml
file f [
  Example of old File Tree:
  RootDir
  |_ dir1
  |_ dir2
    |_ ~__init_file__.py
    |_ file2
    |_ ~__init__.py
  |_ Last file
]
@enduml

2. With new files list

@startfiles
title  Example of old File Tree:
/RootDir/dir1/
/RootDir/dir2/__init_file__.py
/RootDir/dir2/file2
/RootDir/dir2/__init__.py
/RootDir/Last file
@endfiles

Regards,
Th.

1 Answer

0 votes
answered Aug 7 by The-Lu (69,220 points)

Hello J.,

A possible answer: 

  • Could you test `~` escape char?
Regards,
Th.
...