diff options
| author | Bojidar Marinov | 2016-05-13 16:53:08 +0300 |
|---|---|---|
| committer | Rémi Verschelde | 2016-06-04 22:20:02 +0200 |
| commit | d7e4fb4365cbbd8b17f386ed515a82575981788a (patch) | |
| tree | 223f8270b8333e716588a7b670245749c32841ca /tools | |
| parent | a3979cc928d69de1736401315fc3deaa6a88f6ec (diff) | |
| download | godot-d7e4fb4365cbbd8b17f386ed515a82575981788a.tar.gz godot-d7e4fb4365cbbd8b17f386ed515a82575981788a.tar.zst godot-d7e4fb4365cbbd8b17f386ed515a82575981788a.zip | |
Save member information in docdata
Closes #4609
(cherry picked from commit 4cbf74da7107a255ceecc602a76f72dde2b77c05)
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/doc/doc_data.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/doc/doc_data.cpp b/tools/doc/doc_data.cpp index 919752b71..a26690a02 100644 --- a/tools/doc/doc_data.cpp +++ b/tools/doc/doc_data.cpp @@ -985,6 +985,8 @@ Error DocData::save(const String& p_path) { PropertyDoc &p=c.properties[i]; _write_string(f,2,"<member name=\""+p.name+"\" type=\""+p.type+"\">"); + if (p.description!="") + _write_string(f,3,p.description.xml_escape()); _write_string(f,2,"</member>"); } |
