diff options
author | rinpatch <rinpatch@sdf.org> | 2019-09-14 17:26:35 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-09-14 17:26:35 +0000 |
commit | 9c64a25713790fefa8b5c419aeadf55113c17073 (patch) | |
tree | a0943dea969cc66df9b7576d4085836862368798 /lib | |
parent | 62bbba80f35a7628e501c1937aecf2644a0b049b (diff) | |
parent | 4da0da9aa46f0970735f398a1786902f4e3a86eb (diff) | |
download | pleroma-9c64a25713790fefa8b5c419aeadf55113c17073.tar.gz |
Merge branch 'config-changes' into 'develop'
two separate files for config.md and generated config.md
See merge request pleroma/pleroma!1666
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/docs/markdown.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/docs/markdown.ex b/lib/pleroma/docs/markdown.ex index 24930cc9f..8386dc2fb 100644 --- a/lib/pleroma/docs/markdown.ex +++ b/lib/pleroma/docs/markdown.ex @@ -3,9 +3,9 @@ defmodule Pleroma.Docs.Markdown do @spec process(keyword()) :: {:ok, String.t()} def process(descriptions) do - config_path = "docs/config.md" + config_path = "docs/generated_config.md" {:ok, file} = File.open(config_path, [:utf8, :write]) - IO.write(file, "# Configuration\n") + IO.write(file, "# Generated configuration\n") IO.write(file, "Date of generation: #{Date.utc_today()}\n\n") IO.write( |