diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-02 23:00:01 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-09 07:41:47 +0800 |
commit | cbb668672fe14f30ae51a022e48f27ddcbe9b324 (patch) | |
tree | 077fda05022898ff8723f8bcdd1cfe42ad832234 | |
parent | 4b5639bf63f2c86604cb55387324e00759a0b1f2 (diff) | |
download | dexon-solidity-cbb668672fe14f30ae51a022e48f27ddcbe9b324.tar.gz dexon-solidity-cbb668672fe14f30ae51a022e48f27ddcbe9b324.tar.zst dexon-solidity-cbb668672fe14f30ae51a022e48f27ddcbe9b324.zip |
Add metadata.useLiteralContent option
-rw-r--r-- | docs/using-the-compiler.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst index ebb03832..2518310b 100644 --- a/docs/using-the-compiler.rst +++ b/docs/using-the-compiler.rst @@ -90,6 +90,11 @@ should be backwards compatible if possible. enabled: true, runs: 500 }, + // Metadata settings (optional) + metadata: { + // Use only literal content and not URLs (false by default) + useLiteralContent: true + }, // Addresses of the libraries. If not all libraries are given here, it can result in unlinked objects whose output data is different. libraries: { // The top level key is the the name of the source file where the library is used. |