@@ -62,6 +62,16 @@ defmodule Membrane.Mixfile do
6262 extras: extras ( ) ,
6363 formatters: [ "html" ] ,
6464 source_ref: @ source_ref ,
65+ assets: % {
66+ "guides/membrane_tutorials/get_started_with_membrane/assets" => "assets" ,
67+ "guides/membrane_tutorials/basic_pipeline/assets" => "assets" ,
68+ "guides/membrane_tutorials/basic_pipeline_extension/assets" => "assets" ,
69+ "guides/membrane_tutorials/create_new_plugin/assets" => "assets" ,
70+ "guides/membrane_tutorials/digital_video_introduction/assets" => "assets" ,
71+ "guides/membrane_tutorials/h264/assets" => "assets" ,
72+ "guides/membrane_tutorials/broadcasting/assets" => "assets" ,
73+ "guides/membrane_tutorials/glossary/assets" => "assets"
74+ } ,
6575 nest_modules_by_prefix: [
6676 Membrane.Bin ,
6777 Membrane.Element ,
@@ -88,7 +98,7 @@ defmodule Membrane.Mixfile do
8898 "CHANGELOG.md" ,
8999 "CONTRIBUTING.md" ,
90100 Path . wildcard ( "guides/**/*.md" )
91- |> Enum . reject ( & ( Path . basename ( & 1 ) in [ "README.md" , "index.md" ] ) )
101+ |> Enum . reject ( & ( Path . basename ( & 1 ) in [ "README.md" , "index.md" , "1_preface.md" ] ) )
92102 |> Enum . map ( & { String . to_atom ( & 1 ) , [ title: reformat_tutorial_title ( & 1 ) ] } ) ,
93103 LICENSE: [ title: "License" ]
94104 ]
@@ -160,8 +170,6 @@ defmodule Membrane.Mixfile do
160170 Path . wildcard ( "guides/membrane_tutorials/basic_pipeline_extension/*.md" ) ,
161171 "Creating plugins": Path . wildcard ( "guides/membrane_tutorials/create_new_plugin/*.md" ) ,
162172 "Useful concepts": Path . wildcard ( "guides/useful_concepts/*.md" ) ,
163- "Digital video introduction":
164- Path . wildcard ( "guides/membrane_tutorials/digital_video_introduction/*.md" ) ,
165173 H264: Path . wildcard ( "guides/membrane_tutorials/h264/*.md" ) ,
166174 Broadcasting: Path . wildcard ( "guides/membrane_tutorials/broadcasting/*.md" ) ,
167175 Glossary: Path . wildcard ( "guides/membrane_tutorials/glossary/*.md" ) ,
0 commit comments